diff options
Diffstat (limited to 'etc/profile')
-rw-r--r-- | etc/profile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/etc/profile b/etc/profile new file mode 100644 index 0000000..c8a1a52 --- /dev/null +++ b/etc/profile @@ -0,0 +1,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'
\ No newline at end of file |