我想弄清楚我的历史是怎么回事.但我找不到手册
history -h不返回任何内容,man history返回的是8级历史手册,而不是我们都使用的bash。
发布于 2020-04-10 17:54:30
history是许多内置的bash中的一个,所以很多人认为在手册页面中列出它会带来更多的伤害而不是好处。也就是说,bash确实有自己的内置系统,比如fc和test。若要访问history的手册,请使用
help history在bash会话中。
或在~6000行bash手册中获得命令摘要
# Jump to the entry in Ubuntu/Fedora/MacOS
man -P 'less -p " history \["' bash资料来源:
https://github.com/bminor/bash/blob/master/builtins/history.def
https://www.gnu.org/software/bash/manual/html_node/Bash-History-Builtins.html
https://unix.stackexchange.com/questions/579257
复制相似问题