I have the names of some text files listed in a separate text file named list.txt.

I would like to concatenate all of the files listed in this list.txt into a single file called bigFile.txt.

How to do it using cat/ls and pipes?

link|improve this question
feedback

1 Answer

{ xargs cat < list.txt ; } > bigFile.txt
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.