Skip to content

Commit d2c414a

Browse files
authored
Updating Shell With New Input.
1 parent 4dda697 commit d2c414a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

shell.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
def Shell(Options):
66
Path = CommandsPaths.Main()
77
Commands = CommandsParser.Main(Path)
8-
8+
99
while (1):
10-
Input = input("root@Command: ")
10+
Input = input("/> ")
1111

1212
try:
1313
if "-" in Input:
@@ -21,9 +21,9 @@ def Shell(Options):
2121
ScriptsRunner.Main(Script=Script , Input="")
2222
except Exception as e:
2323
if "No module named" in str(e):
24-
print("Command Has Found But The Script Doesn't Exists.")
24+
print("The Command Has Been Found But The Script Doesn't Exists.")
2525
else:
26-
print("Can't Reconize This Command: '{0}'".format(Input))
26+
print("Can't Recognize This Command: '{0}'".format(Input))
2727

2828
def OptionsCollector():
2929
Parser = optparse.OptionParser()

0 commit comments

Comments
 (0)