On Wed, 2005-03-23 at 15:30 -0700, Nicholas Leippe wrote:What's wrong with one-liners? Why not:
f=.$RANDOM; mkfifo $f; find -iname '*.csv' > $f & \ tar -T $f -cjf archive.tar.bz2 && rm $f
or you can do without the fifo altogether.
find -iname '*.csv' | tar -T - -cjf archive.tar.bz2
the "-T -" means that it will retrieve a list of files to backup from stdin.
--lonnie
smime.p7s
Description: S/MIME cryptographic signature
.===================================. | This has been a P.L.U.G. mailing. | | Don't Fear the Penguin. | | IRC: #utah at irc.freenode.net | `==================================='
