From 5ffaadb08604fa9843c26c221a96936941e49de3 Mon Sep 17 00:00:00 2001 From: JaydenMW Date: Mon, 22 Feb 2021 16:44:43 +0000 Subject: [PATCH] Update shell.py --- shell.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shell.py b/shell.py index 18fbf51..ce2c0c8 100644 --- a/shell.py +++ b/shell.py @@ -8,7 +8,7 @@ RAM = psutil.virtual_memory() CPU = platform.processor() OS = os_name = platform.system() -VER = "PCLISH v0.0.5a-patch2a" +VER = "PCLISH v0.0.5a-hotfix2a" PROMPT = "shell@localhost$ " @@ -112,15 +112,15 @@ def main(): pclish_ver() elif inp == "ls": pclish_ls() - elif inp[] == "mkdir": + elif inp == "mkdir": pclish_mkdir() elif inp == "shtdwnsubsys": pclish_shtdwnsubsys() elif inp == "system": pclish_system() - elif inp[:3] == "echo ": + elif inp == "echo": pclish_echo() - elif inp[:3] == "oscmd ": + elif inp == "oscmd": pclish_oscmd() else: execute_command(inp)