This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
#!/usr/bin/env bash
# hiding input data from monitor
read -s -p "Please enter your password: " pass
#添加了-s选项之后,不会自动换行,不添加-s 会自动换行
echo
echo "Is your password really $pass?"