我有一个脚本,它从用户输入密码。在密码提示之后,我在下一行运行的命令,在密码提示符下打印该命令的输出。如何避免在密码提示下打印输出。
代码:
echo -n "Enter Password:"
read -s password
预期产出:
Enter Password:
Login successful.
当前输出:
Enter Password:Login successful.
答案 0 :(得分:2)
echo
一行:
echo -n "Enter Password:"
read -s password
echo