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
How about cat $(cat listoffiles) | grep -v "^#"?
cat $(cat listoffiles) | grep -v "^#"