Ok
Just , send or Paste your scripting code here....,otherwise its difficult that where u r getting error...
Gaurav
hi gaurav,
Here the script
for I in $ (seq 113001 113050)
do
useradd $I
echo password | passwd --stdin $I
chage -d 0 $I
when i run this script i am getting invalid user name,but if i am doing like this i can create
for I in $@
do
useradd $I
echo password | passwd --stdin $I
chage -d 0 $I
if i run this script (i.e) bash users ram tony ........... i can create user accounts
I want to create a user account in numbers i.e 113001, 113002 ...........
I am waiting for your Reply.
Thanks in Advance,
Purushothaman.