Update shell.py

This commit is contained in:
JaydenMW 2021-02-20 21:39:37 +00:00
parent 81973ab2f9
commit 745b35879b
1 changed files with 7 additions and 7 deletions

View File

@ -111,17 +111,17 @@ def main():
elif inp == "ver":
pclish_ver()
elif inp == "ls ":
pclish_ls()
elif inp == "mkdir ":
pclish_mkdir()
pclish_ls(inp[3:])
elif inp[:3] == "mkdir ":
pclish_mkdir(inp[3:])
elif inp == "shtdwnsubsys":
pclish_shtdwnsubsys()
elif inp == "system":
pclish_system()
elif inp == "echo ":
pclish_echo()
elif inp == "oscmd ":
pclish_oscmd()
elif inp[:3] == "echo ":
pclish_echo(inp[3:])
elif inp[:3] == "oscmd ":
pclish_oscmd(inp[3:])
else:
execute_command(inp)