I use ubuntu 11.04, and the question must be common to any bash shell. Pressing the up arrow key on your terminal will retrieve the previous command you had executed at your terminal.

My question is where(in which file) will all these command history be stored? Can I read that file?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

the history filename was stored in variable : $HISTFILE

echo  $HISTFILE 

will give you the right file.

Usually in bash it would be ~/.bash_history, however it could be changed by configuration.

also notice that sometimes the very last commands is not stored in that file. running

history -a

will persistent.

history -r 

will clean those command not yet written to the file.

link|improve this answer
feedback

For bash, it is by default in ~/.bash_history (check the HISTFILE environment variable if it isn't). You can directly cat the file or use the history command.

link|improve this answer
Thank you! Got it :) – greenhorn Dec 19 '11 at 13:29
1  
you can also try history > ouputfile.txt to save the contents to a file. – karthik Dec 19 '11 at 13:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.