Wednesday, January 22, 2025

Linux终端清除bash历史命令

 1. 清空当前屏幕内容

clear

2. 清除本次终端历史但下次启动仍留存

history -c

3 彻底清除

nano ~/.bash_profile或nano ~/.bashrc

export HISTSIZE=0

export HISTFILESIZE=0

或者

rm ~/.bash_history

No comments: