$ set -o | grep history
history on
$ echo $HISTFILE
/root/.bash_history
$ echo $HISTSIZE
1000
$ echo $HISTFILESIZE
1000
Ho eseguito il comando seguente e la cronologia diventa disabilitata per tutti gli utenti al logout
$ ln -sf /dev/null ~/.bash_history && history -c && exit
Come posso riattivare la cronologia o renderla normale come predefinita?
Grazie