蘋果MacOS之顯示隱藏檔案及Terminal 無法儲存歷史記錄問題

lvxiangan發表於2018-11-29

在 Terminal 輸入:
// 顯示所有檔案,強制退出Finder
defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder

// 隱藏所有檔案,強制退出Finder
defaults write com.apple.finder AppleShowAllFiles -boolean false ; killall Finder

 

最近發現Terminla 有個問題:歷史記錄無法使用 history -c 命令清空,新輸入的命令也無法快取了。

解決方法:
step1:找到.bash_history檔案,把歷史記錄刪除,保留自己常用的。


 

step2:清空.bash_session資料夾

 

 

 

相關文章