Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an input (let's say a file). On each line there is a file name. How can I read this file and display the content for each one.

share|improve this question
Do you mean C# foreach? – Simone Nov 12 '10 at 8:37
"Bash" is a type of UNIX shell – HaveAGuess Nov 3 '12 at 14:36

5 Answers

up vote 32 down vote accepted

Something like this would do:

xargs cat <filenames.txt

The xargs program reads its standard input, and for each line of input runs the cat program with the input lines as argument(s).

If you really want to do this in a loop, you can:

for fn in `cat filenames.txt`; do
    echo "the next file is $fn"
    cat $fn
done
share|improve this answer

You'll probably want to handle spaces in your file names, abhorrent though they are :-)

So I would opt initially for something like:

pax> cat qq.in
normalfile.txt
file with spaces.doc

pax> sed 's/ /\\ /g' qq.in | xargs -n 1 cat
<<contents of 'normalfile.txt'>>
<<contents of 'file with spaces.doc'>>

pax> _
share|improve this answer
xargs --arg-file inputfile cat

This will output the filename followed by the file's contents:

xargs --arg-file inputfile -I % sh -c "echo %; cat %"
share|improve this answer

Here is a while loop:

while read filename
do
    echo "Printing: $filename"
    cat "$filename"
done < filenames.txt
share|improve this answer

In C# // your inputs List filenames = new List { "test1.txt", "test2.txt" };

        // for each input
        filenames.ForEach( strFile => 
            {
                // read contents of the file and do something
                string content  = File.ReadAllText( strFile );
            });

Hope this helps,

Sk8tz

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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