Command-History
如何使用歷史資訊/保持計數?
man history
說history info ?count?
和history keep ?count?
。我不知道這兩個問號是什麼意思。我試圖history keep 1000
保留 1000 個歷史項目,但它剛剛返回fc: event not found: keep
。我在Google上找不到任何例子。如何使用它們。問號是什麼?
您遇到的手冊頁很可能是指
history
Tcl 程式語言的命令。你可能想要history
你的 shell 的命令。help history
對於 Bash,您可以使用orman bash
(sectionHISTORY
)獲取命令的資訊。要在 Bash 中保留 1000 個項目的歷史記錄,請將其添加到您的
.bashrc
:HISTSIZE=1000
獲取文件以反映更改:
source ~/.bashrc
驗證更改:
echo $HISTSIZE