attempt to fix things

This commit is contained in:
JaydenMW 2021-03-03 12:41:03 -06:00
parent 34e3832edf
commit 3d8751240d
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
import sys import sys
def echo(): def echo(txt):
print(' '.join(sys.argv[1:])) print(txt.join(sys.argv[1:]))

View File

@ -64,8 +64,8 @@ def main():
mkdir() mkdir()
elif inp == "system": elif inp == "system":
system() system()
elif inp == "echo ": elif inp == "echo":
echo() echo(txt)
elif inp == "oscmd ": elif inp == "oscmd ":
oscmd() oscmd()
else: else: