I create new users in SCO 5.07 by creating a tmp passwd file and run addxusers. I use this becouse I have many users at a time to add and it works great. Is there any way to have a list of user names and do a for next loop and test logins? Something like this, except this dosen't work.
for name in `cat list`
do
echo $name
login $name
done
Thanks in advance
Brandt
for name in `cat list`
do
echo $name
login $name
done
Thanks in advance
Brandt