Here is a very simple code snippet to ask for an input without showing it on display. Great for all password inputs.

#!/bin/sh
read -p "Username: " uname
stty -echo
read -p "Password: " passw; echo
stty echo

Comments   

# Guest 2014-04-09 00:58
B) merci
Reply