I have a script that authenicates everyone to DB app except for root goes to shell as shown below:
# Added for LikeWise
#######START#######
uid=`id -u`
if [[ $uid != 0 ]];then
> .sh_history
exec csession ENSEMBLE -U HHM "^ZU"
exit
fi
########STOP#######
I need to add more UID's to it now but cannot figure out how to modify.
I need to have 0,210,etc.
Any help would be appreciated...
# Added for LikeWise
#######START#######
uid=`id -u`
if [[ $uid != 0 ]];then
> .sh_history
exec csession ENSEMBLE -U HHM "^ZU"
exit
fi
########STOP#######
I need to add more UID's to it now but cannot figure out how to modify.
I need to have 0,210,etc.
Any help would be appreciated...