Answers for "how to run python script in command line linux"

6

run linux command using python

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

run python script terminal

python SCRIPTNAME.py
Posted by: Guest on October-04-2021

Code answers related to "how to run python script in command line linux"

Python Answers by Framework

Browse Popular Code Answers by Language