cat filename.part001 >> filename;
cat filename.part002 >> filename;
.......
cat filename.partN >> filename;
You should use double '>' sign to avoid overriding data. Single '>' sign means to delete content of file (here 'filename' ) and to put in data from filename.partN file. Double '>' will concatenate present content of file with data from filename.partN.
Good luck :)
Some rights reserved - CC-BY-SA-3.0 License.

No comments:
Post a Comment