Neurohazard
暮雲煙月,皓首窮經;森羅萬象,如是我聞。

如何清除 bash 中的 history 命令记录

wpadmin~December 5, 2019 /InfoSec

Contents

如何清除 bash 中的 history 命令记录

正文

kill -9 $$ 是个好方法,但是某些情况下,由于网络波动导致 ssh 掉线,这时候你的命令记录就直接写到磁盘了,所以得在开始就防患于未然。

[space]export HISTCONTROL=ignorespace
[space]history -d [line_number]
[space]export HISTSIZE=0
[space]export HISTFILE=/dev/null
[space]unset HISTFILE

临时禁止记录

[space]set +o history

参考资料

如何清除 history 命令记录
http://blog.leanote.com/post/snowming/ad293ff667db

Leave a Reply

Your email address will not be published. Required fields are marked *