2
0
mirror of https://github.com/alexanderepstein/Bash-Snippets synced 2018-11-08 02:59:35 +01:00

Silence password

This commit is contained in:
Alex Epstein 2017-07-03 10:28:19 -04:00
parent 67542465dd
commit d9ba53065a

View File

@ -103,7 +103,7 @@ getBitbucketInfo()
echo -n 'Enter your Bitbucket username: ' echo -n 'Enter your Bitbucket username: '
read bbUsername read bbUsername
echo -n 'Enter your Bitbucket password: ' echo -n 'Enter your Bitbucket password: '
read password # -s flag hides password text read -s password # -s flag hides password text
echo echo
} }