6 lines
83 B
Python
6 lines
83 B
Python
from sys import argv
|
|
|
|
|
|
fp = open('/opt/testlog.log', 'a', 0)
|
|
fp.write("%s" % argv)
|