dcb630b37d
POSIX platforms only. Must be enabled via -Dstages_live_reload=true.
8 lines
190 B
Python
Executable file
8 lines
190 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
|
|
def quote(s):
|
|
return '"' + s.replace('\\', '\\\\').replace('"', '\\"') + '"'
|
|
|
|
print("{", ', '.join([quote(s) for s in sys.argv[1:]] + ['NULL']), "}")
|