Linux bash shell脚本提示用户输入并存储在变量中
这个问题在这里已经有了答案:
看起来你可能有回车/窗口行结束,尝试运行
dos2unix input.txt
要么
sed 's/^M$//' input.txt > output.txt
要么
tr -d 'r' < input.txt > output.txt
链接地址: http://www.djcxy.com/p/25551.html
上一篇: Linux bash shell script prompt user input and store in variable