mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 12:13:10 -05:00
4 lines
106 B
Python
Executable File
4 lines
106 B
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
print(*[arg.encode('unicode-escape').decode() for arg in sys.argv[1:]])
|