I've got a few files that were split using the split command. Which command can combine them into one file again?

link|improve this question
feedback

1 Answer

up vote 5 down vote accepted

cat.

cat partaa partab partac > file
link|improve this answer
1  
Even better, the files created by split will be processed in the correct order if you say "cat part* > file" – khedron Jun 30 '10 at 23:23
feedback

Your Answer

 
or
required, but never shown

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