8 lines
102 B
Python
8 lines
102 B
Python
#!/usr/bin/python
|
|
|
|
from sys import argv
|
|
|
|
|
|
fp = open('/opt/testlog.log', 'a', 0)
|
|
fp.write("%s" % argv)
|