Can I increase the size of the command history in bash?
Note that I use a Red Hat Linux computer in the undergraduate astrophysics department here (so I don’t get that many privileges).
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
Instead of specifying numbers, you can do
unset HISTSIZE unset HISTFILESIZE shopt -s histappend
in which case only your disk size (and your “largest file limit”, if your OS or FS has one) is the limit.
However, be aware that this will eventually slow down bash more and more. see this BashFAQ document and the debian-administration article (original link died, look in a mirror: archive.is and archive.org) for techniques which scale better.
Method 2
@Philomath, unsetting those environment vars does not work for me at all! For me, this causes bash to use its inbuilt defaults (it seems) of truncating .bash_history to about 9KiB.
What does work for me is the following in my .bashrc:
export HISTSIZE= export HISTFILESIZE= shopt -s histappend
Method 3
You can use logrotate to preserve old entries. It allows you, for example, to set size limits that will trigger archiving. It is normally run from a daily cronjob, but you might just as well invoke it from your .bash_logout script.
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0