HOW TO CREATE 10 USERS IN UNIX(HP-UX) USING SHELL
SHELL SCRIPT?
Answers were Sorted based on User's Feedback
Answer / nimal
#!/bin/sh
for i in {1..10)
do
echo "creating user"$i;
useradd user$i;
done
to list the created users.
cat /etc/passwd
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / pitambar mishra
My dear friends,
you have used 'useradd' command in the script through which we can only add the user name. But for adding password you should use 'passwd' command because password is also mandatory.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dibala
#!/bin/ksh
set -x #on
#variable
i=1
while [ i let 10 ]
do
/usr/sbin/useradd user$i -d /home/user$i -s /bin/ksh -m
user$i
i=$(expr $i + 1)
done
| Is This Answer Correct ? | 0 Yes | 1 No |
What is ms powershell?
write a non recursive shell script that accepts any number of arguments and prints them in the reverse order
how can you execute the shell scripts?
Can we run shell script in windows?
What is the conditional statement in shell scripting?
write a shell script that counts a number of unique word contained in the file and print them in alphabetical order line by line?
What is shell application?
Given a file find the count of lines containing the word "abc".
What is subshell?
How does shell scripting work?
What is the meaning of $1 in shell script?
What's the difference between scripting and coding?