Krafting to [email protected] • 1 year agothe fear of missing out a better compressionlemmy.worldimagemessage-square194fedilinkarrow-up1943
arrow-up1943imagethe fear of missing out a better compressionlemmy.worldKrafting to [email protected] • 1 year agomessage-square194fedilink
minus-squareu/lukmly013 💾 (lemmy.sdf.org)linkfedilinkEnglish15•1 year agoAlmost, I think. wget -O - http://example.com/archive.tar | tar -xvf -
minus-squareu/lukmly013 💾 (lemmy.sdf.org)linkfedilinkEnglish4•1 year agoTAr stands for Tape Archive. Tapes store data sequentially. Downloads are done sequentially. It’s really just like a far away tape drive.
minus-square@[email protected]linkfedilink2•1 year agoI usually suppress output of either wget (-q) or of tar (no v flag), otherwise I think the output gets mangled and looks funny (you see both download progress and files being extracted).
Almost, I think.
Didnt think this would ever work
This is what we call UNIX-way
TAr stands for Tape Archive. Tapes store data sequentially. Downloads are done sequentially.
It’s really just like a far away tape drive.
I usually suppress output of either wget (-q) or of tar (no v flag), otherwise I think the output gets mangled and looks funny (you see both download progress and files being extracted).