最佳答案
我有如下 bash 脚本:
#!/bin/bash
echo "Please enter your username";
read username;
echo "Please enter your password";
read password;
我希望当用户在终端上输入密码时,它不会显示出来(或者像 * * * * * * 这样的东西应该显示出来)。我该怎么做呢?