Situation:
I want to get a password entry from the stdin console - without echoing what the user types. Is there something com
stdin
you can do this by execing stty -echo to turn off echo and then stty echo after reading in the password to turn it back on
stty -echo
stty echo