Fixed PAGER env. variable to contain absolute PATH for PATH-challenged

accounts.
This commit is contained in:
hjp 1996-02-22 13:09:47 +00:00
parent cbd13b42a4
commit a2d82721a0
1 changed files with 7 additions and 1 deletions

View File

@ -68,6 +68,12 @@ then
# I do it ONLY on HP-UX # I do it ONLY on HP-UX
export TZ=MEZ-1MESZ export TZ=MEZ-1MESZ
fi fi
export PAGER=less if [ -x /usr/bin/less ]
then
export PAGER=/usr/bin/less
elif [ -x /usr/local/bin/less ]
then
export PAGER=/usr/local/bin/less
elif
export XAUTHORITY=$HOME/.Xauthority export XAUTHORITY=$HOME/.Xauthority
export CVSROOT=/nfs/wsrdb/usr/local/src/master export CVSROOT=/nfs/wsrdb/usr/local/src/master