Test Page

This is a simple example of a dark-themed HTML page. You can customize it further as needed.

Sample Content

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.

Code Example

import subprocess
import os

# Create the bash script content
bash_script = """#!/bin/bash
echo "Hello World from Bash!"
"""

# Write the bash script to a file
with open("hello.sh", "w") as f:
    f.write(bash_script)

# Make the bash script executable
os.chmod("hello.sh", 0o755)

# Execute the bash script from Python
try:
    result = subprocess.run(["./hello.sh"], capture_output=True, text=True)
    print("Bash script output:", result.stdout)
except subprocess.CalledProcessError as e:
    print("Error executing bash script:", e)