Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have bash script like the following:

#!/bin/bash

echo "Please enter your username";
read username;

echo "Please enter your password";
read password;

I want that when the user types the password on the terminal, it should not be displayed (or something like *******) should be displayed). How do I achieve this?

Regards,

JP

share|improve this question
General note just to prevent confusion: this username/password has got nothing to do with the linux username/password - I am just looking for a way to hide the data that user types during "read password". – JP19 Nov 30 '10 at 17:46
Thanks SiegeX and Andreas - both solutions work. – JP19 Nov 30 '10 at 17:51
I added an update for if you want to get fancy by outputting * while they type in the password – SiegeX Nov 30 '10 at 18:09
Thanks much. One question if someone knows - will this automatically prevent it from going into .bash_history? – JP19 Nov 30 '10 at 19:09
1  
I don't think it will, bash_history only captures your command, what happens after running your command it doesn't capture. – SiGanteng Dec 1 '10 at 1:11
show 1 more comment

3 Answers

up vote 17 down vote accepted

Just supply -s to your read call like so:

$ read -s PASSWORD
$ echo $PASSWORD
share|improve this answer
1  
I like this way better. I would vote you up If I didn't hit my daily limit – SiegeX Nov 30 '10 at 17:53

Update

In case you want to get fancy by outputting an * for each character they type, you can do something like this (using andreas' read -s solution):

unset password;
while IFS= read -r -s -n1 pass; do
  if [[ -z $pass ]]; then
     echo
     break
  else
     echo -n '*'
     password+=$pass
  fi
done

Without being fancy

echo "Please enter your username";
read username;

echo "Please enter your password";
stty -echo
read password;
stty echo
share|improve this answer
It should be IFS=$'\n' so that you can actually finish typing the password. Otherwise nice; very clever. – Sorpigal Nov 30 '10 at 18:21
No need to set IFS=$'\n' because read's default delimiter is -d $'\n'. The if-statement to break on a nul string, which happens on a newline, is what allows them to finish the password. – SiegeX Nov 30 '10 at 18:25
In testing on FreeBSD with bash 3.x I find this not to be the case. Testing on Linux with 3.1.17 yields your results. I haven't got a BSD box handy at the moment but I will try to confirm this tomorrow, just for my own curiosity's sake. – Sorpigal Nov 30 '10 at 21:14
@Sorpigal: interesting, let me know what you find out. I'm all about portability – SiegeX Nov 30 '10 at 23:39
Confirmed. On FreeBSD 7 with bash 3.2.48(1)-release (i386-portbld-freebsd7.0) your version does not terminate on enter. Setting IFS as I described does cause it to do so. On a Debian box with bash 3.1.17 it works as you describe. Could it be a difference in the defaults for read between bash 3.1 and 3.2? – Sorpigal Dec 1 '10 at 11:07
show 4 more comments

you can use stty to disable echo

stty_orig=`stty -g`
stty -echo
read password
stty $stty_orig
share|improve this answer
sorry for the edit, accidentally updated your post and not mine. ewps! – SiegeX Nov 30 '10 at 18:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.