This commit is contained in:
parent
d8ee864bae
commit
00e29ab908
1 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,7 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
import sweecrypt
|
import sweecrypt
|
||||||
from sys import argv
|
from sys import argv
|
||||||
|
if argv[3][:2] == "-s":
|
||||||
|
print(sweecrypt.decrypt(" ".join(argv[4:]), argv[3][3:]))
|
||||||
|
else:
|
||||||
print(sweecrypt.decrypt(" ".join(argv[3:])))
|
print(sweecrypt.decrypt(" ".join(argv[3:])))
|
Loading…
Reference in a new issue