如何从bash中读取整行

前端之家收集整理的这篇文章主要介绍了如何从bash中读取整行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个文件file.txt,内容
i love this world

I hate stupid managers
I love linux

I have MS

当我执行以下操作时:

for line in `cat file.txt`; do
echo $line
done

它给出了类似的输出

I
love
this
world
I
..
..

但我需要输出如下所示的整行 – 任何想法?

i love this world

I hate stupid managers
I love linux

I have MS
while read -r line; do echo "$line"; done < file.txt
原文链接:https://www.f2er.com/bash/384626.html

猜你在找的Bash相关文章