Lines Matching +full:a +full:- +full:oq +full:- +full:z
1 # System-wide .bashrc file for interactive bash(1) shells.
7 [ -z "$PS1" ] && return
11 shopt -s checkwinsize
14 if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
18 # set a fancy prompt (non-color, overwrite the one in /etc/profile)
20 if ! [ -n "${SUDO_USER}" -a -n "${SUDO_PS1}" ]; then
24 # Commented out, don't overwrite xterm -T "title" -n "icontitle" by default.
28 # PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"'
35 #if ! shopt -oq posix; then
36 # if [ -f /usr/share/bash-completion/bash_completion ]; then
37 # . /usr/share/bash-completion/bash_completion
38 # elif [ -f /etc/bash_completion ]; then
44 if [ ! -e "$HOME/.sudo_as_admin_successful" ] && [ ! -e "$HOME/.hushlogin" ] ; then
46 if [ -x /usr/bin/sudo ]; then
47 cat <<-EOF
48 To run a command as administrator (user "root"), use "sudo <command>".
56 # if the command-not-found package is installed, use it
57 if [ -x /usr/lib/command-not-found -o -x /usr/share/command-not-found/command-not-found ]; then
59 # check because c-n-f could've been removed in the meantime
60 if [ -x /usr/lib/command-not-found ]; then
61 /usr/lib/command-not-found -- "$1"
63 elif [ -x /usr/share/command-not-found/command-not-found ]; then
64 /usr/share/command-not-found/command-not-found -- "$1"