ProgrammingThis forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
I have written a bash script to add user which will take the user name as a command line argument. But I would like to add a boundary check such that if the script is executed without a user name it will exit. Current script:
#!/bin/bash
for name in "$@"
do
echo user name is ${user}
done
echo "hello $user"
adduser $user
How am i going to add the boundary check in my script?
Distribution: Solaris 11.4, Oracle Linux, Mint, Ubuntu/WSL
Posts: 9,785
Rep:
Can you first explain the logic of your script ? It accepts several arguments, display all of them but use only the last one to add a user, assuming the loop is really "for user in ...", is it really what you want ?
Should you actually want to add every user name passed as an argument, here is a simpler way, which need no boundary check:
Code:
#!/bin/bash
for user
do
echo hello "$user"
adduser $user
done
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.