8

How can I write Bash Code for Hiding Password Or convert into '*' user input will be in string so no spaces, and change or hide password String.

Jeff Schaller
  • 67,283
  • 35
  • 116
  • 255
  • 1
    A string is a string even if it contains spaces, and passwords often contain spaces... – Kusalananda Dec 10 '18 at 20:33
  • Oooph, tough call for me on VTC here. The target Q does have an answer that would print asterisks, as asked (in a comment) in this question, but it doesn't handle backspaces as also hinted at here. I'll VTC because it's a good duplicate otherwise, but if this question is edited to incorporate new requirements, it could become separate. – Jeff Schaller Dec 11 '18 at 13:54

2 Answers2

13

Use read -s to not echo the input, i.e. show nothing when the user types the password:

read -p 'Password? ' -s password
echo Your password is "$password".
choroba
  • 47,233
11

You can use the systemd-ask-password, the password will displayed as asterisks while typing.

Format: (systemd-ask-password --help)

systemd-ask-password [OPTIONS...] MESSAGE

e,g:

PASSWORD=$(systemd-ask-password "Please type your Password:")
Please type your Password: ***********
GAD3R
  • 66,769