linux 下for in 和 while 遍历文件读取每行 区别
前置:1.进入linux2.新建个文件,内容linux 下for循环 和 while循环去 遍历文件读取每行第一种方法whilewhile read adoecho ${a}done < hello.txt或者这样写也可以,我习惯这样写:第一种方法for in这个for in风格像不像python,不对是p...
·
前置:
1.进入linux
2.新建个文件,内容
linux 下for循环 和 while循环去 遍历文件读取每行
第一种方法while
while read a
do
echo ${a}
done < hello.txt
或者这样写也可以,我习惯这样写:
第一种方法for in
这个for in风格像不像python,不对是python像它
for a in `cat hello.txt`
do
echo ${a}
done;
执行结果
发现了把,for in 去遍历的时候,my friend 当成2个字符串了,分成两行
更多推荐
已为社区贡献1条内容
所有评论(0)