7 lines
165 B
Bash
7 lines
165 B
Bash
if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
|
|
export HISTSIZE=2000
|
|
export HISTFILESIZE=2000
|
|
export HISTTIMEFORMAT='%F %T '
|
|
shopt -s histappend
|
|
fi
|