标签:bar ade 注意 for 循环 ref txt peter net
shell中for循环的默认分隔符是:空格、tab、\n
需求是只以\n作为分隔符
shell for循环以\n作为分割符,
方式一:
文件aa.sh
#!/bin/bash IFS=$‘\n\n‘ for i in `cat 1.txt`; do echo "begin" echo $i echo "end" done
运行方式也要注意:./aa.sh 或 bash aa.sh
不要使用sh aa.sh, 为啥?因为无效!
方式二:
标签:bar ade 注意 for 循环 ref txt peter net
原文地址:https://www.cnblogs.com/LiuYanYGZ/p/12577350.html