How to Control a Unix Shell with Python

104 14
    • 1). Import the "os" module:

      >>>import os

    • 2). Issue a command to the shell through the "popen" function, and save the returned results in a variable. The popen function sends the command to a command shell, which executes the command in the operating system:

      >>>l = os.popen('ls'')

    • 3). Read the commands from the variable using the "readline" function. This will return the first line of output from the shell command:

      >>>l.readline()
      '/etc'

Subscribe to our newsletter
Sign up here to get the latest news, updates and special offers delivered directly to your inbox.
You can unsubscribe at any time

Leave A Reply

Your email address will not be published.