From: tfheen Date: Thu, 26 Sep 2002 10:16:19 +0000 (+0000) Subject: use .environment X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72fe90201a53633cad740e39c1356a98878c34c6;p=dotfiles use .environment git-svn-id: file:///svn/tfheen/trunk/dotfiles@34 8da78d58-1cd3-0310-bee5-d77bd1b3e8bf --- diff --git a/bashrc b/bashrc index de9bf81..1e3be66 100644 --- a/bashrc +++ b/bashrc @@ -14,23 +14,9 @@ if [ -f /local/skel/all.bashrc ]; then . /local/skel/all.bashrc fi -export CVSROOT=~/data/cvs - -export EDITOR=/usr/bin/emacs -export TZ=CET - -case `uname -s` in - *BSD) - HOSTNAME=`hostname` - DOMAINNAME=`hostname | cut -d. -f 2-` - ;; - Linux) - HOSTNAME=`hostname -f` - DOMAINNAME=`hostname -f | cut -d. -f 2-` - ;; -esac - -LS_OPTIONS="$LS_OPTIONS -B" +if [ -f "$HOME/.environment" ]; then + . $HOME/.environment +fi ATTR_FET="\[\033[1m\]" ATTR_UND="\[\033[4m\]" @@ -46,15 +32,7 @@ case $TERM in export PS1="\u@\h:\w\$" export PS2=">$";; esac -export WWW_HOME=http://localhost/~tfheen/services.html -if test -x "$HOME/bin/lesspipe.sh"; then - export LESSOPEN="|$HOME/bin/lesspipe.sh '%s'" -fi -export LESS="-m" -export RSYNC_RSH=ssh -export CVS_RSH=ssh -export PILOTRATE=115200 -export PILOTPORT=/dev/tts/0 + alias mirror="wget --mirror --no-parent --convert-links -P $HOME/data/www-mirror " case "$DOMAINNAME" in @@ -69,4 +47,3 @@ case "$DOMAINNAME" in export LANG=no_NO ;; esac -export DEBEMAIL=tfheen@debian.org