終端運行每個命令都會記錄下來,每次運行以后,運行history都能看到運行記錄。
3 回答

慕田峪9158850
TA貢獻1794條經(jīng)驗 獲得超8個贊
有很多方法,我知道的比較方便的有
ln -s /dev/null ~/.bash_history
或者
$ unset HISTFILE

慕姐4208626
TA貢獻1852條經(jīng)驗 獲得超7個贊
if grep "unset HISTFILE" /etc/profile >/dev/null 2>&1 then find / -iname '*.bash_history' -type f -exec rm -f {} \; else echo "unset HISTFILE" >> /etc/profile find / -iname '*.bash_history' -type f -exec rm -f {} \; fi
添加回答
舉報
0/150
提交
取消