| |
| | Using find, xargs, and tar to create a huge archive (Cygwin, Linux, Unix) |
 | | What I think was happening was that as xargs was managing the input to the tar command, tar kept re-writing the archive. |
 | | That is, each time xargs passed a new block of input files to tar, tar perceived it as a new command, and went on to re-create the file named myfile.tar. |
 | | This combination of find, tar, and xargs worked like a champ for me. I guess this is one of those things where Unix is "intuitively obvious once you know how to do it", because in retrospect this seems like the obvious solution. |
| www.devdaily.com /blog/Content/2/17/395 (282 words) |
|