4

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

4

1 回答 1

6

你为什么不直接阅读文件。 ~/.bash_history

for history in open('/home/user/.bash_history'):
    print(history, end='')
于 2013-08-19T17:32:19.027 回答