Linux で作業があるなら、.bash_profileに、以下、ヒストリを設定しておきたい。
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
export HISTSIZE=100
alias a='alias'
a h='history | tail -50'