Python:获取shell命令“ history”的输出

我的最终目标是捕获终端中执行的上一条命令。由于〜/ .bash_history不包含当前终端会话中的命令,因此我不能简单地读取该文件。

在另一个线程中,我找到了以下脚本:

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

这与我要查找的内容非常接近,但是由于它是作为子进程启动的,因此它也不会包括当前终端会话的历史记录。有什么办法可以在当前shell中执行类似的命令?

回答:

为什么不直接读取文件。

for history in open('/home/user/.bash_history'):

print(history, end='')

以上是 Python:获取shell命令“ history”的输出 的全部内容, 来源链接: utcz.com/qa/432455.html

回到顶部