Reputation: 3919
I'm trying to construct something like:
wget -qO- $source | <save_to_file> | <read_from_file> | tar -xzvf -
Main idea is to download original file and extract it in parallel.
Upvotes: 1
Views: 72
Reputation:
wget -qO- $source | tee copy.tar.gz | tar -xzvf -
Upvotes: 4