Get Result of Command using Python in Linux
Execute a command and get its results using python in Linux
import commands
result = commands.getoutput("ls")
Execute a command and get its results using python in Linux
import commands
result = commands.getoutput("ls")