Hi all
I have created a script but evey time i run it the script lets me enter the users id and then goes down to done .#!/usr/bin/sh
########################################
# Script to add users to HP-UX #
# Author: Simon Peter Wickham #
# Date: 04/12/01 #
########################################
ID="ID"
NAME="NAME"
GROUP="GROUP"
until [ "$ID" = "E|e" ]
do
read ID?"Please enter ID or press E to exit: "
if
print "The user has been added - THANK YOU "
exit 0
then
print "Please enter user name: "
read NAME
else
print "Please enter a group: "
read GROUP
print "The ID you entered is $ID and the name you have entered is $NAME"
sleep 2
useradd -m -s /usr/bin/sh -g $GROUP -c $NAME $ID
passwd $ID
fi
done
The problem i have is that it will not alloow me to set up any of the other variables could anyone help as it seems to be with the else statement.
Thanks
simon
Simon Peter Wickham
Email: s.wickham@zoom.co.uk
I have created a script but evey time i run it the script lets me enter the users id and then goes down to done .#!/usr/bin/sh
########################################
# Script to add users to HP-UX #
# Author: Simon Peter Wickham #
# Date: 04/12/01 #
########################################
ID="ID"
NAME="NAME"
GROUP="GROUP"
until [ "$ID" = "E|e" ]
do
read ID?"Please enter ID or press E to exit: "
if
print "The user has been added - THANK YOU "
exit 0
then
print "Please enter user name: "
read NAME
else
print "Please enter a group: "
read GROUP
print "The ID you entered is $ID and the name you have entered is $NAME"
sleep 2
useradd -m -s /usr/bin/sh -g $GROUP -c $NAME $ID
passwd $ID
fi
done
The problem i have is that it will not alloow me to set up any of the other variables could anyone help as it seems to be with the else statement.
Thanks
simon
Simon Peter Wickham
Email: s.wickham@zoom.co.uk