Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. HISTFILESIZE=400000000
  2. HISTSIZE=10000
  3. PROMPT_COMMAND="history -a"
  4. export HISTSIZE PROMPT_COMMAND
  5.  
  6. shopt -s histappend
  7.  
  8. # backup history/warn about deleted history
  9. if (( $(wc -l < ~/.bash_history) < 5000 ))
  10. then
  11. echo "#########################"
  12. echo ".bash_history was cleared"
  13. echo "#########################"
  14. else
  15. cp ~/.bash_history ~/.bash_history.back
  16. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement