Update shell.py

This commit is contained in:
JaydenMW 2021-02-20 21:24:31 +00:00
parent 3b39c580f0
commit eddd82f323
1 changed files with 4 additions and 1 deletions

View File

@ -55,7 +55,10 @@ def pclish_cd(path):
print("cd: no such file or directory: {}".format(path))
def pclish_echo(TXT):
print(TXT)
try:
print(TXT)
exception Exception:
print("You need to provide arguments")
def pclish_oscmd(ARGS):
os.system(ARGS)