Command-History

如何使用歷史資訊/保持計數?

  • May 16, 2022

man historyhistory info ?count?history keep ?count?。我不知道這兩個問號是什麼意思。我試圖history keep 1000保留 1000 個歷史項目,但它剛剛返回fc: event not found: keep。我在Google上找不到任何例子。如何使用它們。問號是什麼?

您遇到的手冊頁很可能是指historyTcl 程式語言的命令。你可能想要history你的 shell 的命令。help history對於 Bash,您可以使用or man bash(section HISTORY)獲取命令的資訊。

要在 Bash 中保留 1000 個項目的歷史記錄,請將其添加到您的.bashrcHISTSIZE=1000

獲取文件以反映更改:source ~/.bashrc

驗證更改:echo $HISTSIZE

引用自:https://unix.stackexchange.com/questions/702656