Question: Write the output, and briefly, describe what does this script do? #!/bin/bash echo n Enter the User name: read name while [$name != done]
#!/bin/bash
echo –n “Enter the User name: “
read name
while [$name != “done”]
do
useradd –g users –d /home/$name –s /bin/bash $name
passwd $name
echo –n “Enter the User name: “
read name
done
Step by Step Solution
There are 3 Steps involved in it
Output Less l Enter the User name userinput Description This Bash script pr... View full answer
Get step-by-step solutions from verified subject matter experts
