ファイルパスの入ったファイル名のリストを持つtxtファイルがあります。すべてのファイルを1つのファイルに連結する方法は?SEDを使用して複数のファイルを連結する
EX:あなたはすべての*.txt
ファイルが必要な場合
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
私は下の行
first file content
second file content
third file content
本当にsedが必要ですか? 'cat allFiles.txt | xargs cat'はそれを行うべきです。 – patthoyts
cat allFiles.txt | xargs cat >> output.txt。それは動作します – Neo