ls $lsopt > /dev/null 2>&1 && LS_OPTIONS="$LS_OPTIONS $lsopt"
done
+setpathifdir () {
+ if [ -d "$1" ]; then
+ PATH="$1:${PATH%$1}"
+ fi
+}
+
+appendpathifdir () {
+ if [ -d "$1" ]; then
+ PATH="${PATH%$1}:$1"
+ fi
+}
+
+appendpathifdir /store/gnu/bin
+appendpathifdir /store/bin
+setpathifdir $HOME/bin
+setpathifdir $HOME/usr/bin
+
CVSROOT=~/data/cvs
EDITOR=emacs
TZ=CET
export LS_OPTIONS CVSROOT EDITOR TZ WWW_HOME LESSOPEN LESS RSYNC_RSH
export CVS_RSH PILOTPORT PILOTRATE LANG DEBEMAIL CVSEDITOR ldlib
-export HOSTNAME DOMAINNAME
+export HOSTNAME DOMAINNAME PATH