我长时间使用终端窗口,有很多stdout打印。在这里我需要命令来搜索linux终端(stdout)历史中的一些单词。喜欢在文本文档中查找选项。
答案 0 :(得分:1)
要搜索已执行的命令,请运行以下命令
history |grep 'your search word goes in here'
答案 1 :(得分:1)
好吧,我使用screen来运行linux终端。
你可以做ctrl + a,然后是/或?然后在stdout中搜索字符串。
http://serverfault.com/questions/106388/screen-setup-tips
Check out the link to learn about screen, will make your life simpler!! :-)
答案 2 :(得分:0)
如果您使用bash,您还可以使用任何标准文本编辑器打开.bash_history
文件并对其进行操作。