我有一個包含文件路徑的文件名列表的txt文件。如何將所有文件連接到單個文件?Concat使用SED的多個文件
EX:
One.txt content >> first file content
two.txt content >> second file content
three.txt content >> third file content
allFiles.txt contains these the below lines
one.txt
two.txt
three.txt
我需要Concat的allFiles.txt到包含一個output.txt的文件,下面的線
first file content
second file content
third file content
你真的需要sed嗎? 'cat allFiles.txt | xargs貓'應該這樣做。 – patthoyts
cat allFiles.txt | xargs cat >> output.txt。它的工作原理 – Neo