I use this code to store a password variable in the current script:
read -sp "What's your DB user password?" dbuserp
Is there a way to change the command to ask for the password twice and check matching? All in one line?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
Unfortunately, it’s not possible to do that using
read
directly. You will need to ask for input twice and then check if they match: