7 lines
203 B
Python
Executable file
7 lines
203 B
Python
Executable file
#!/usr/bin/env micropython
|
|
import sys
|
|
import os
|
|
msg = sys.argv[0] + ": " + " ".join(sys.argv)
|
|
|
|
print(msg) # to stdout
|
|
#os.system("logger '"+ msg +"'") # to logs (/var/log/messages)
|