Initial commit

This commit is contained in:
Everest Linux
2022-08-15 14:34:50 -04:00
commit f39fa1594e
16 changed files with 897 additions and 0 deletions

20
scripts/sysfiles/profile Normal file
View File

@@ -0,0 +1,20 @@
# /etc/profile
# Set the initial path
export PATH=/bin:/usr/bin
if [ `id -u` -eq 0 ] ; then
PATH=/bin:/sbin:/usr/bin:/usr/sbin
unset HISTFILE
fi
# Setup 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'
# End /etc/profile