Robert R Evans | 9c7cd9a | 2010-10-02 11:55:34 -0700 | [diff] [blame] | 1 | # append to bash_history if Terminal.app quits |
2 | shopt -s histappend | ||||
3 | |||||
4 | # history handling | ||||
5 | # | ||||
6 | # Erase duplicates | ||||
7 | # Bash History | ||||
8 | export HISTCONTROL="ignoredups" | ||||
9 | export HISTCONTROL=erasedups | ||||
10 | |||||
11 | # resize history size | ||||
12 | export HISTSIZE=5000 | ||||
13 | |||||
14 | |||||
15 | export AUTOFEATURE=true autotest |