Skip to content

Instantly share code, notes, and snippets.

View jayakumarc's full-sized avatar

Jayakumar Chinnappan jayakumarc

  • ThoughtWorks
  • Chennai
View GitHub Profile
@hyfen
hyfen / .bashrc
Created June 12, 2017 01:08
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 "