What's the issue in my “adduser” from another file bash script
问题 I am asked to add some users with all their info (password , id ,group id ...) present in a given file. Whenever I run my bash "gedit" script , it gives me a message that the "useradd command not found". If anyone could help me please , this is my code : #!/bin/bash choice=0 while [ $choice != "1" -a $choice != "2" -a $choice != "3" ] do echo "What do you want to do" echo "1-Add Users" echo "2-Remove users" echo "3-Update users" echo -n "Enter choice : " read choice done x=0 while [ $x -ne 1