Size: a a a
w
w
cat /dev/null > ~/.bash_history && history -c && exit
.bashrc: alias full-cleanup-history='if [ -f "$HOME/.bash_history" ]; then rm -f $HOME/.bash_history; fi && history -c', делаем source .bashrc, чтобы не перегружать сеанс.w
w
history -c && history -w
w
rm -f $HOME/.bash_history путь поставить в кавычки rm -f "$HOME/.bash_history" )s
t
t