Update os.py

This commit is contained in:
heckeralt 2024-10-06 18:21:14 -04:00
parent 5ce93a6d15
commit 0c8cebb94d
1 changed files with 1 additions and 1 deletions

2
os.py
View File

@ -7,7 +7,7 @@ def hello():
def help_command():
print("This is the help command. Use --help for assistance.")
def bash_command():
os.system("bash")
os.system("bash bash.sh")
def custom_terminal():
commands = {
"hello": hello,