Die Fehlermeldung:
Code: Alles auswählen
bash: values: command not found
Code: Alles auswählen
#------------------------------------------------------------------------------
# my personalized bashrc.
#------------------------------------------------------------------------------
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines in the history. See bash(1) for more options
export HISTCONTROL=ignoredups
#------------------------------------------------------------------------------
# Prompt.
#------------------------------------------------------------------------------
if [ $USER != "root" ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;34m\]\u@\h\[\033[00m\]:\[\033[01;30m\]\w\[\033[00m\]\$
'
else
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;31m\]\u@\h\[\033[00m\]:\[\033[01;30m\]\w\[\033[00m\]\$
'
fi
# If this is an xterm set the title to user@host:dir
case "$TERM" in
xterm*|rxvt*)
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}:
${PWD/$HOME/~}\007"'
;;
*)
;;
esac
#------------------------------------------------------------------------------
# Bash shopts.
#------------------------------------------------------------------------------
# check the window size after each command and, if necessary, update the
values of LINES and COLUMNS.
shopt -s checkwinsize
#------------------------------------------------------------------------------
# Colourized ls.
#------------------------------------------------------------------------------
eval "`dircolors -b`"
alias ls='ls --color=auto'
#------------------------------------------------------------------------------
# Aliases.
#------------------------------------------------------------------------------
alias cls='clear'
alias l='ls -lA'
alias ll='ls -l'
alias la='ls -A'
alias ..='cd ..'
#------------------------------------------------------------------------------
# Security aliases, to avoid making mistakes.
#------------------------------------------------------------------------------
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'
alias ln='ln -i'
#------------------------------------------------------------------------------
# umask settings for root.
#------------------------------------------------------------------------------
if [ $USER != "root" ]; then
umask 022
fi
#------------------------------------------------------------------------------
# Environment Variables.
#------------------------------------------------------------------------------
export EDITOR=vim
export HISTSIZE=100
export DBUS_SESSION_BUS_ADDRESS=""