获取用户输入是 交互( interactive )中至关重要的部分。
read
read 变量
#!/bin/bash
echo "Enter Your Age"
read age
echo "Your age is $age"
但在命令行中,通过参数获取用户输入才是更正宗的做法。
#!/bin/bash
echo "Total arguments : $#"
echo "Username: $1"
echo "Age: $2"
echo "Full Name: $3"
#将此文件保存为:arguments.sh
bash arguments.sh tuts 30 'Foss Linux'
网友评论