linux 里 分隔符保存在 变量 "IFS" 里,默认的分隔符是 空格"" ; 制表符 \t ; 换行符 \n
[root@host103 test]# set |grep IFS
当文件中有空格时,直接使用for 循环就会分隔开内容
使用while read 命令读取文件,目标文件内容以 重定向输入的形式输入
[root@host103 test]# while read line
> do
> echo "$line"
> done < /test/users.txt
[root@host103 test]# cat users.txt | while read line
> do
> echo "$line"
> do
原文:https://www.cnblogs.com/zhijiyiyu/p/15028632.html