Answers for "linux command on python"

6

run linux command using python

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

linux command on python

import os
os.system("command..")
Posted by: Guest on January-21-2021

Python Answers by Framework

Browse Popular Code Answers by Language