Combine files into a single file
Last Updated on Friday, 01 April 2011 18:24
Question:
Give the exact command that would combine the following files into a single file called "joined" (without the quotes): f1, f2, old, junk
Answer:
cat f1 f2 old junk > joined
















