In bash, while reading input from the user, if you want to suppress the echo on the screen (for sensitive inputs like passwords), do this:
stty -echo
read SECRETPASSWD
stty echo
In bash, while reading input from the user, if you want to suppress the echo on the screen (for sensitive inputs like passwords), do this:
stty -echo
read SECRETPASSWD
stty echo