gpt4 book ai didi

bash - 如何从 bash 中读取整行

转载 作者:行者123 更新时间:2023-11-29 08:53:43 26 4
gpt4 key购买 nike

我有一个文件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

关于bash - 如何从 bash 中读取整行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4813092/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com