Cant find .bash_history file in my home directory. Where is it?
echo $HISTFILE
says
/home/iam/.bash_history
But there is no such file.
Cant find .bash_history file in my home directory. Where is it?
echo $HISTFILE
says
/home/iam/.bash_history
But there is no such file.
This file is hidden. Press Ctrl+H in nautilus and you will see hidden files.
Then why don't you create it? Was it there before? There could be endless reasons why it's gone... only because that environment variable is set doesn't mean the file must be there.
[[ -e "$HISTFILE" ]] && echo 'OK' || echo 'Not OK'
? – heemayl Sep 19 '15 at 20:36