This repository has been archived on 2022-02-20. You can view files and clone it, but cannot push or open issues/pull-requests.
|
# root login setup only, put in if block
|
|
if [ $EUID -eq 0 ] ; then # if root user
|
|
echo login profile, root specific setup
|
|
export PATH=$PATH:/sbin:/usr/sbin:/usr/local/sbin
|
|
unset HISTFILE
|
|
fi
|