Bash Scripting - User Input
How can you modify this script to ensure the password input is not displayed and the prompt appears on a new line?
read -p "Enter password: " -s password echo "Password saved"
