Sophie

Sophie

distrib > Mageia > 6 > armv7hl > media > core-updates-src > by-pkgid > 7b15af08f50ab3f2d0d0884ec05fd412 > files > 66

bash-4.3-48.4.mga6.src.rpm

# Special nice features for bash

if [ "$PS1" ]  && [ -n "$BASH" ]; then
    # automatically save the history after each command
    PROMPT_COMMAND="history -a; $PROMPT_COMMAND"

    # do not save several time the same command in a row
    HISTCONTROL=ignoredups

    # automatically correct the info on window size
    # do not do autocompletion on empty line
    # allow mixing history when several shells running in parallel
    # automatically fix the hash table of known commands
    shopt -s checkwinsize no_empty_cmd_completion histappend checkhash 
fi