Is there another way to cat a file on the end of another file? I've got 5 700mb files that I need in 1. I've done a cat file1 file2 file3 file4 file5 >>new but this takes forever... Is there a quicker way?
ianicr,
cygwin tar (like others) start files into the archive on block boundary. Before appending a new file to the archive, tar padd the block with null characters.
try this :
tar -Af target_file file1 file2 file3
less target_file
or od -cx target_file
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.