diff --git a/main.py b/main.py index 11590d6..0f5ca83 100644 --- a/main.py +++ b/main.py @@ -9,7 +9,9 @@ while True: command = input(currentDirectory + " > ") if command == "pwd": print(currentDirectory) + elif command == "cat *": + print("You ran cat") elif command == "version": print(version) else: - subprocess.run(command) \ No newline at end of file + subprocess.run(command)