173 :: Bash History and Tab completion
Hosted by Dann on Tuesday, 2006-10-24 is flagged as Explicit and is released under a CC-BY-NC-SA license.
.
Listen in mp3 format. Play now:
Duration: 00:14:51
general.
Bash History and Tab Completion
when you log in the first time bash reads:
- /etc/profile
- .profile (if exists in home dir)
- .bash_profile (if exists in home dir)
- .bashrc (if it exists)
If you want to increase your history size put this in your .bash_profile:
export HISTSIZE=1000You may want to also put that in your .bashrc for subsequent shells from your login shell, because this value will not be set until you log out and back in again. You can also issue export HISTSIZE=1000 in the shell to increase this, but value will not be set for any other or subsequent shells started from your session.