问题定义
通过如下命令来执行脚本,脚本里有read命令会读取用户输入
curl https://123.com/test.sh|bash
cat test.sh|bash
问题现象
将脚本下载到本地是可以正常运行的
sh test.sh
但是通过cat 或者curl, 经过管道之后再sh执行脚本,就会跳过read
原理
管道将stdout重定向到stdin,默认情况下是无法运行交互式脚本
解决方法
使用/dev/tty强制脚本从终端读取
read -p "Are you sure [Y/n]?" line </dev/tty
参考链接
How to read user input from a pipe?