mash/main.py

18 lines
411 B
Python
Raw Normal View History

2024-07-03 12:08:56 +10:00
import os
import subprocess
initDirectory = os.path.dirname(os.path.realpath(__file__))
currentDirectory = initDirectory
version = "0.0.1"
while True:
command = input(currentDirectory + " > ")
if command == "pwd":
print(currentDirectory)
2024-07-03 12:12:07 +10:00
elif command == "cat *":
print("You ran cat")
2024-07-03 12:08:56 +10:00
elif command == "version":
print(version)
else:
2024-07-03 12:12:07 +10:00
subprocess.run(command)