On Wed, Jun 08, 2011 at 01:09:38AM +0100, Ethan Grammatikidis wrote: > It's also good for unpacking archives, I much prefer its zoom-to-unpack to > mucking about with tar (or especially zip,) although it's not as clean as > p9's `hget url | gunzip | tar -x`.
you know you can do something like `curl url | zcat | tar x` or `wget -O - url | zcat | tar x` on any respectable unix variant, right?