在 Bash 中获取用户输入

Aashish Sunuwar 2022年5月11日
在 Bash 中获取用户输入

本文将了解如何获取用户输入并将其分配给 Bash 脚本中的变量。

使用 read 命令获取用户输入

在 Bash 中,我们使用 read 命令来读取用户的输入。

例子:

echo "Tell me your name: "
read fullname
echo "Hello, " $fullname

输出:

Tell me your name:
JOHN
Hello, JOHN

上面,我们呼应用户说出他们的名字。然后,读取用户的输入并将其存储在 fullname 变量中。最后,他们会收到一个 Hello 和用户提供的名字。

read 命令中使用 -p-s 选项

我们可以通过将 read 命令与其他参数组合来自定义其行为。其中一些包括 -p,它允许我们获得提示,以及 -s,它使输入静音以保护隐私。

例子:

read -p "Enter username: " username
read -sp "Enter password: " password
echo
echo "Logged in successfully as " $username

输出:

Enter username: johndoe
Enter password:
Logged in successfully as johndoe

在上面的示例中,脚本提示用户输入用户名并将其存储在 username 变量中。之后,它会提示用户输入密码,但会隐藏用户的输入并将其保存在 password 变量中。

相关文章 - Bash Variable