We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dda697 commit d2c414aCopy full SHA for d2c414a
shell.py
@@ -5,9 +5,9 @@
5
def Shell(Options):
6
Path = CommandsPaths.Main()
7
Commands = CommandsParser.Main(Path)
8
-
+
9
while (1):
10
- Input = input("root@Command: ")
+ Input = input("/> ")
11
12
try:
13
if "-" in Input:
@@ -21,9 +21,9 @@ def Shell(Options):
21
ScriptsRunner.Main(Script=Script , Input="")
22
except Exception as e:
23
if "No module named" in str(e):
24
- print("Command Has Found But The Script Doesn't Exists.")
+ print("The Command Has Been Found But The Script Doesn't Exists.")
25
else:
26
- print("Can't Reconize This Command: '{0}'".format(Input))
+ print("Can't Recognize This Command: '{0}'".format(Input))
27
28
def OptionsCollector():
29
Parser = optparse.OptionParser()
0 commit comments