To make password/input text invisible?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting To make password/input text invisible?
# 1  
Old 12-02-2011
To make password/input text invisible?

All,

My script is
-----------
Code:
#cat pass.sh
password=123
echo -n "Enter pass:"
read pass
if [ $pass = $password ]; then
echo "Correct password"
else
echo "Wrong password"
fi

When i run this script, text(password) which i'm entering is visible in screen
-----------------------------------------------------------------------

Code:
$ sh pass.sh
Enter pass:123
Correct password
$

I want to make it invisible when i enter the text... How can i do that.? Anybody help on this...

Last edited by Scott; 12-02-2011 at 07:28 AM.. Reason: Code tags
# 2  
Old 12-02-2011
Code:
 
read -sp "password: " pass
 
echo $pass

This User Gave Thanks to itkamaraj For This Post:
# 3  
Old 12-02-2011
Another way with "stty":
Code:
$ cat noEchoPass.sh
sttySettings=`stty -g`
echo "Password: "
stty -echo
read pass
stty "${sttySettings}"
echo "pass: [${pass}]"
$ ./noEchoPass.sh
Password:
pass: [test]

This User Gave Thanks to felipe.vinturin For This Post:
# 4  
Old 12-03-2011
Thank you itkamaraj & felipe.vinturin

---------- Post updated 12-03-11 at 11:31 AM ---------- Previous update was 12-02-11 at 05:07 PM ----------

Hi,

Code:
#cat test1.sh
read -sp "password: " pass
echo $pass

This is not woking in solaris. It shows error like.

Code:
# sh test1.sh
test1.sh: -sp: is not an identifier


Last edited by Scott; 12-03-2011 at 07:55 AM.. Reason: Code tags, please...
# 5  
Old 12-03-2011
It would work in bash, but I guess you are using plain, old sh.

If it's just a simple solution you want, the stty -echo option from felipe.vinturin is fine.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Search last column of INPUT.txt in TABLEs text and add correspond columns to INPUT.txt

Hi dears i use bash shell i have INPUT.txt like this number of columns different in one some row have 12 , some 11 columns see last column INPUT.txt CodeGender Age Grade Dialect Session Sentence Start End Length Phonemic Phonetic 63 M 27 BS/BA TEHRANI 3 4 298320 310050... (2 Replies)
Discussion started by: alii
2 Replies

2. UNIX for Dummies Questions & Answers

Search String, Out matched text and input text for no match.

I need to search a string for some specific text which is no big deal using grep. My problem is when the search fails to find the text. I need to add text like "na" when my search does not match. I have tried this command but it does not work when I put the command in a loop in a bash script: ... (12 Replies)
Discussion started by: jojojmac5
12 Replies

3. Shell Programming and Scripting

How do i make input start with a letter?

Howdy folks, How do i make the input start with a letter and certain num of numbers and if anything else is entered it should display error for ex; a123455 is good ( exactly 7 characters) and ex: sio234234 is not good ex: b233 is not good.. ex: jlasjdlfks is not good ... (2 Replies)
Discussion started by: coolkid
2 Replies

4. Shell Programming and Scripting

Make a password protected bash script resist/refuse “bash -x” when the password is given

I want to give my long scripts to customer. The customer must not be able to read the scripts even if he has the password. The following command locks and unlocks the script but the set +x is simply ignored. The code: read -p 'Script: ' S && C=$S.crypt H='eval "$((dd if=$0 bs=1 skip=//|gpg... (7 Replies)
Discussion started by: frad
7 Replies

5. Shell Programming and Scripting

make loop from input file

Hi Guys, I have file A.txt PP97 PP66 PP87 PP66 PP47 PP57 PP44 PP20 PP66 PP16 PP13 PP51 PP68 PP70 PP75 PP30 (2 Replies)
Discussion started by: asavaliya
2 Replies

6. Shell Programming and Scripting

How to make sure the input string is one of many options?

How to make sure the input string is one of many options e.g centos-5.5-i386 windows-2003r2-x64 ? The options are dynamic, so "case" condition check doesn't work. I use grep -o -w , it doesn't work every time because - is valid word boundry #word windows-2003 failed the check as expected... (4 Replies)
Discussion started by: honglus
4 Replies

7. Shell Programming and Scripting

make a variable read the value from the standard input

Hi, In Perl, how can we define a variable make it read the value from the standard input? Meaning, how can have the user type in the value that will be assigned to the variable? Thanks, (2 Replies)
Discussion started by: Pouchie1
2 Replies

8. UNIX for Dummies Questions & Answers

make 1 new file using records of 5 input files

can you make me an awk script that will: read the 1st record from each input file, file1 file2 file3 file4 and file5 and write them to file6. then..... read the 2nd record from each input file, file1 file2 file3 file4 and file5 and append them to file6. then..... read the 3rd record... (1 Reply)
Discussion started by: kenneth.mcbride
1 Replies

9. Shell Programming and Scripting

Problem with alias and invisible text

okay how do i make an alias that has a space in it? for most of my other ones i've simply done within my ~/.bash_profile alias `ls`='ls -laF' but with alias `sudo su`='sh hello.sh' I'm unable to make it work in addition i was wondering how i could allow the user to type in... (1 Reply)
Discussion started by: cleansing_flame
1 Replies

10. Shell Programming and Scripting

How to make script password protected

Hi All, I want to make my script password protected. i e: if somebody runs my script it should prompt for password. Can somebody help me in to execute the same?? Thanks in Advance :b: (11 Replies)
Discussion started by: achararun
11 Replies
Login or Register to Ask a Question