When I want to ask for a password in a bash script, I do that :
read -s
...but when I run bash in POSIX mode, with sh, the option don't exists :
$ read -s
sh: 1: read: Illegal option -s
How do I securely ask for an input with a POSIX-compliant command ?