I am new to shell scripting . i want to make the password not visible when we type password ..can you please suggest me on this
echo "enter your password"
read pass
if [ "$pass" != "" ]
then
echo "thank you "
else
echo "invalid password"
exit
fi