小编典典

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

linux

我的最终目标是捕获终端中执行的上一条命令。由于〜/ .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中执行类似的命令?


阅读 1147

收藏
2020-06-03

共1个答案

小编典典

为什么不直接读取文件。 〜/ .bash_history

for history in open('/home/user/.bash_history'):
    print(history, end='')
2020-06-03