3 lines
183 B
Python
3 lines
183 B
Python
import os
|
|
exit_code = os.system('ls') # Just execute the command, return a success/fail code
|
|
output = os.popen('ls').read() # If you want to get the output data. Deprecated.
|