Answers for "python script for linux commands"

6

run linux command using python

import subprocess
subprocess.call("command1")
subprocess.call(["command1", "arg1", "arg2"])
Posted by: Guest on July-31-2020
0

python linux script

#!/usr/bin/python
print ("Hello world")
Posted by: Guest on December-12-2021

Code answers related to "python script for linux commands"

Python Answers by Framework

Browse Popular Code Answers by Language