Skip to content

Instantly share code, notes, and snippets.

@AlexKordic
Forked from hyfen/.bashrc
Created March 26, 2020 12:06
Show Gist options
  • Save AlexKordic/1c3001308f8c02ce76ce99fecb0c5728 to your computer and use it in GitHub Desktop.
Save AlexKordic/1c3001308f8c02ce76ce99fecb0c5728 to your computer and use it in GitHub Desktop.
Save unlimited bash history in OSX
# save history to ~/.bash_history as soon as command is run
export PROMPT_COMMAND='history -a'
# save unlimited history
# osx doesn't seem to respect =-1 or = options
export HISTSIZE=9999999999
export HISTFILESIZE=999999999
# osx doesn't actually respect this and it'll fall back to unix timestamp (which we want)
export HISTTIMEFORMAT="%d/%m/%y %T "
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment