ubuntu - Linux command line instructions from python -
this question has answer here:
- calling external command in python 44 answers
is there method issuing command line instructions directly python shell?
you can use os.system
-
import os os.system('<command line instruction>')
Comments
Post a Comment