Run BASH built-in commands in Python?

2019-01-09 06:11发布

Is there a way to run the BASH built-in commands from Python?

I tried:

subprocess.Popen(['bash','history'],shell=True, stdout=PIPE)

subprocess.Popen('history', shell=True, executable = "/bin/bash", stdout=subprocess.PIPE)

os.system('history')

and many variations thereof. I would like to run history or fc -ln.

2条回答
\"骚年 ilove
2楼-- · 2019-01-09 06:42

I finally found a solution that works.

from subprocess import Popen, PIPE, STDOUT
shell_command = 'bash -i -c "history -r; history"'
event = Popen(shell_command, shell=True, stdin=PIPE, stdout=PIPE, 
    stderr=STDOUT)

output = event.communicate()

Thank you everyone for the input.

查看更多
爱情/是我丢掉的垃圾
3楼-- · 2019-01-09 06:57
subprocess.Popen(["bash", "-c", "type type"])

this calls bash and tells bash to run the string type type, which runs the builtin command type on the argument type.

output: type is a shell builtin

the part after -c has to be one string. this will not work: ["bash", "-c", "type", "type"]

查看更多
登录 后发表回答