我有需要执行以下操作的 shell 脚本: 1) shell 脚本需要将日志存储到日志文件中。2) shell 脚本需要提示用户消息并读取输入。
例子:
cat read-test.sh
echo -n "What is your name?"
read user_name
执行此脚本:
./read-test.sh >> read-test.log
预期用户提示:
What is your name?
rajiv
当我执行这个脚本时
./read-test.sh
我得到了想要的输出。
但是当我执行这个脚本时
./read-test.sh >> 读取-test.sh
“你叫什么名字?” 保存到我不想的 read-test.log 文件中。
有什么方法可以向用户显示消息(“你叫什么名字?”)并读取输入?