# # .bashrc # # Florian Fankhauser # florian@web-expires2009.flof.at # http://www.flof.at/ # # Mon Dec 13 22:03:13 CET 2004 # # specify the EDITOR variable export EDITOR=/usr/bin/vim # specify the NNTPSERVER variable # which gets recognized by some news readers # export NNTPSERVER= # specify the PS1 variable, the primary prompt string # (see 'man bash' for more information) # # "user@host:working directory $ " export PS1="\u@\h:\w $ " # add some values to the path export PATH=$PATH:$HOME/bin # add some handy aliases alias sl=ls alias l="ls -l" alias la="ls -la" # enable color highlighting when doing a "ls" export LS_OPTIONS='--color=auto' alias ls="ls $LS_OPTIONS" # set TZ for the timezone TZ="Europe/Vienna" # set the HISTIGNORE variable so that entries in the bash history # get only saved once even though a command is entered multiple times export HISTIGNORE="&" # or: # HISTCONTROL=ignoredups # set the LC_ALL variable to POSIX export LC_ALL=POSIX # done.