Update shell.py

This commit is contained in:
JaydenMW 2021-02-20 21:22:37 +00:00
parent 75134bc0a4
commit 0d9ba5b8d7
1 changed files with 4 additions and 4 deletions

View File

@ -54,8 +54,8 @@ def pclish_cd(path):
except Exception:
print("cd: no such file or directory: {}".format(path))
def pclish_echo(txt):
print(txt)
def pclish_echo(TXT):
print(TXT)
def pclish_oscmd(ARGS):
os.system(ARGS)
@ -77,8 +77,8 @@ def pclish_ls():
def pclish_ver():
print(VER)
def pclish_mkdir(dir):
os.mkdir(dir)
def pclish_mkdir(DIR):
os.mkdir(DIR)
def pclish_system():
print("System: XCU Python Based Shell Env")