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-square@[email protected]linkfedilink39•1 year agoWhen I’m feeling cool and downloading a *.tar* file, I’ll wget to stdout, and tar from stdin. Archive gets extracted on the fly. I have (successfully!) written an .iso to CD this way, too (pipe wget to cdrecord). Fun stuff.
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).
When I’m feeling cool and downloading a
*.tar*
file, I’llwget
to stdout, and tar from stdin. Archive gets extracted on the fly.I have (successfully!) written an
.iso
to CD this way, too (pipe wget to cdrecord). Fun stuff.Something like
wget avc.com | tar xvf
?Almost, I think.
Didnt think this would ever work
TAr stands for Tape Archive. Tapes store data sequentially. Downloads are done sequentially.
It’s really just like a far away tape drive.
This is what we call UNIX-way
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).