I\'m writing a Bourne shell script and have a password input like this:
echo -n \'Password: \' read password
Obviously, I don\'t want the p
stty_orig=`stty -g` stty -echo echo 'hidden section' stty $stty_orig