mash/main.py
2024-07-03 12:08:56 +10:00

15 lines
352 B
Python

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)
elif command == "version":
print(version)
else:
subprocess.run(command)