Среда (10/17/18)

/dev/pts/0
09:02:48
#~
 27 #*)
 28 #    ;;
    [           ]
 29 #esac
 30
 31 # enable bash completion in interactive shells
"/etc/bash.bashrc" 55L, 1895C
 32 #if ! shopt -oq posix; then
 33 #  if [ -f /usr/share/bash-completion/bash_completion ]; then
 34 #    . /usr/share/bash-completion/bash_completion
 35 #  elif [ -f /etc/bash_completion ]; then
 36 #    . /etc/bash_completion
 37 #  fi
 38 #fi
 39
 40 # if the command-not-found package is installed, use it
 41 if [ -x /usr/lib/command-not-found -o -x /usr/share/command-not-found/command-not-found ]; then
 42         function command_not_found_handle {
 43                 # check because c-n-f could've been removed in the meantime
 44                 if [ -x /usr/lib/command-not-found ]; then
 45                    /usr/bin/python /usr/lib/command-not-found -- "$1"
 46                    return $?
 47                 elif [ -x /usr/share/command-not-found/command-not-found ]; then
 48                    /usr/bin/python /usr/share/command-not-found/command-not-found -- "$1"
 49                    return $?
 50                 else
 51                    printf "%s: command not found\n" "$1" >&2
 52                    return 127
 56
~   alias ls='ls --color'
 57
~
~
~
"/etc/bash.bashrc" 57L, 1918C written