我試圖弄清楚我的歷史發生了什麼......但我找不到手冊
history -h
返回任何內容man history
返回一本 8 級歷史手冊,而不是我們都使用的 bash 手冊。
答案1
history
是眾多內建函數之一bash
,因此許多人認為將其列在其手冊頁中弊大於利。也就是說,bash
確實有自己的內建手動系統,例如fc
和test
。若要存取 的手冊history
,請使用
help history
在一次bash
會議中。
bash
或在 ~6000 行手冊中取得命令摘要
# 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