OK源码中国资源网教你如何快速删除centos里面的历史命令

centos 删除历史命令

在CentOS中删除历史命令有以下几种实现方法:

1;使用history命令删除历史命令:

history -c

2;使用echo命令清空.bash_history文件:

echo -n > ~/.bash_history

3;使用rm命令删除.bash_history文件:

rm ~/.bash_history

4;修改.bashrc文件,禁用历史命令记录:将以下行添加到.bashrc文件末尾:

unset HISTFILE