这样的事情会做:
原文链接:https://www.f2er.com/bash/392330.htmlxargs cat <filenames.txt
xargs程序读取其标准输入,并且对于每行输入,以输入行作为参数运行cat程序。
如果你真的想在循环中这样做,你可以:
for fn in `cat filenames.txt`; do echo "the next file is $fn" cat $fn done