最佳答案
Bash history
命令非常酷。我理解它为什么显示行号,但是有没有办法可以调用 history 命令并禁止显示行号?
这里的要点是使用 history 命令,所以请不要回复 cat ~/.bash_history
目前产量:
529 man history
530 ls
531 ll
532 clear
533 cd ~
534 history
期望输出:
man history
ls
ll
clear
cd ~
history
感谢大家的伟大解决方案。Paul 的是最简单的,因为我的 bash 历史记录大小设置为2000,所以它将为我工作。
我还想分享我今天早上发现的一篇很酷的文章。它有几个我现在正在使用的很好的选项,比如保持 bash 历史记录中的重复条目,以及确保多个 bash 会话不会覆盖历史文件: http://blog.macromates.com/2008/working-with-history-in-bash/