我试图在嵌套循环中读取两个不同的输入而没有成功。我已经按照最佳答案on this question进行了操作,并查看了 Advanced Bash-Scripting Guide 的file descriptors page。
#!/bin/bash
while read line <&3 ; do
echo $line
while read _line <&4 ; do
echo $_line
done 4< "sample-2.txt"
done 3< "sample-1.txt"
Foo
Foo
Bar
Bar
Foo
Bar
Bar
Foo
Bar
Bar
Foo
Bar
答案 0 :(得分:1)
您的文字文件不会以换行符结尾:
$ printf 'Foo\nFoo' > sample-1.txt
$ printf 'Bar\nBar' > sample-2.txt
$ bash tmp.sh
Foo
Bar
$ printf '\n' >> sample-1.txt
$ printf '\n' >> sample-2.txt
$ bash tmp.sh
Foo
Bar
Bar
Foo
Bar
Bar
read
如果到达文件末尾而没有看到换行符,则其退出状态为非零。有一个黑客可以解决这个问题,但最好确保你的文本文件以换行符结尾。
# While either read is successful or line is set anyway
while read line <&3 || [[ $line ]]; do