Answers for "how to connect to linux server and execute comand with python"

6

execute linux command in python

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

Code answers related to "how to connect to linux server and execute comand with python"

Python Answers by Framework

Browse Popular Code Answers by Language