1.有一文本test.log,内容是:
1 a A2 b B3 c C
2.执行while得到正常输出
cat test.log |while read item;do echo $item;done
3.但是执行while+awk会损失第一行
cat test.log |while read item;do awk '{print $1"A"}';done
2A3A
1A2A3A
隔江千里
相关问题
相关分类