I have a text file that holds a list of files. I want to cat their contents together. What is the best way to do this? I was doing something like this but it
cat
{ while read file do #process comments here with continue cat "$file" done } < tmp > newfile