7 lines
No EOL
197 B
Python
7 lines
No EOL
197 B
Python
#!/usr/bin/python3
|
|
import sweecrypt
|
|
from sys import argv
|
|
if argv[3][:2] == "-s":
|
|
print(sweecrypt.encrypt(" ".join(argv[4:]), argv[3][3:]))
|
|
else:
|
|
print(sweecrypt.encrypt(" ".join(argv[3:]))) |