在 Python 中运行 BASH 内置命令?

发布于 2024-10-28 01:24:31 字数 312 浏览 1 评论 0原文

有没有办法从 Python 运行 BASH 内置命令?

我尝试过:

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

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

os.system('history')

及其许多变体。我想运行 historyfc -ln

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

紫南 2024-11-04 01:24:31

我终于找到了一个有效的解决方案。

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()

感谢大家的意见。

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.

南风几经秋 2024-11-04 01:24:31
subprocess.Popen(["bash", "-c", "type type"])

这会调用 bash 并告诉 bash 运行字符串 type type,该字符串在参数 type 上运行内置命令 type

输出: type is a shellbuiltin

-c 之后的部分必须是一个字符串。这是行不通的:["bash", "-c", "type", "type"]

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"]

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文