Bash Tips

Im Textmate Blog gibt es einige Tips für den Umgang mit der Bash. Extrem nützlich fand ich folgende Einträge in ~/.profile


# remove duplicates from the history

export HISTCONTROL=erasedups

# increase the history size

export HISTSIZE=10000

# ensures that when you exit a shell, the history from that session is appended to ~/.bash_history.

shopt -s histappend

Possibly related posts (automatically generated)