Answers for "execute unix from python"

1

unix command in python script

from subprocess import call
call('echo "I like potatos"', shell=True)
call('pwd', shell=True)
Posted by: Guest on October-13-2021

Code answers related to "execute unix from python"

Python Answers by Framework

Browse Popular Code Answers by Language