aboutsummaryrefslogtreecommitdiff
path: root/etc/profile
blob: c8a1a5259ef612a63428bc8d0f426b97920d9577 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export PATH=/bin:/usr/bin

if [ `id -u` -eq 0 ] ; then
        PATH=/bin:/sbin:/usr/bin:/usr/sbin
        unset HISTFILE
fi


# Set up some environment variables.
export USER=`id -un`
export LOGNAME=$USER
export HOSTNAME=`/bin/hostname`
export HISTSIZE=1000
export HISTFILESIZE=1000
export PAGER='/bin/more '
export EDITOR='/bin/vi'