content = commands.getoutput(x)
os.system(x + ' > foo') content = open('foo', 'r').read()
content = subprocess.check_output(x, shell=True)