Colourized Bash, farbige Shell

vi ~/.bashrc export LS_OPTIONS=‘–color=auto‘ eval „`dircolors`“ alias ls=’ls $LS_OPTIONS‘ alias ll=’ls $LS_OPTIONS -lha‘ alias l=’ls $LS_OPTIONS -lA‘ # improve cd.. typo alias cd..=’cd ..‘ alias grep=’grep –color=auto‘ alias egrep=’egrep –color=auto‘ alias fgrep=’fgrep –color=auto‘ case „$TERM“ in xterm-color) color_prompt=yes;; esac force_color_prompt=yes if [ -n „$force_color_prompt“ ]; then if [ -x /usr/bin/tput ] && tput setaf 1…
Weiterlesen