Advertisement
wellthatsucks

Untitled

Aug 24th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. # Eternal bash history.
  2. # ---------------------
  3. # Undocumented feature which sets the size to "unlimited".
  4. # http://stackoverflow.com/questions/9457233/unlimited-bash-history
  5. export HISTFILESIZE=
  6. export HISTSIZE=
  7. export HISTTIMEFORMAT="[%F %T] "
  8. # Change the file location because certain bash sessions truncate .bash_history file upon close.
  9. # http://superuser.com/questions/575479/bash-history-truncated-to-500-lines-on-each-login
  10. export HISTFILE=~/.bash_eternal_history
  11. # Force prompt to write history after every command.
  12. # http://superuser.com/questions/20900/bash-history-loss
  13. PROMPT_COMMAND="history -a; $PROMPT_COMMAND"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement