Krafting to linuxmemes@lemmy.world • 5 months agothe fear of missing out a better compressionlemmy.worldimagemessage-square197fedilinkarrow-up1940file-text
arrow-up1940imagethe fear of missing out a better compressionlemmy.worldKrafting to linuxmemes@lemmy.world • 5 months agomessage-square197fedilinkfile-text
minus-square@qjkxbmwvz@startrek.websitelinkfedilink39•5 months 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-square@Midnight1938@reddthat.comlinkfedilink8•5 months agoSomething like wget avc.com | tar xvf ?
minus-squareu/lukmly013 💾 (lemmy.sdf.org)linkfedilinkEnglish15•5 months agoAlmost, I think. wget -O - http://example.com/archive.tar | tar -xvf -
minus-squareu/lukmly013 💾 (lemmy.sdf.org)linkfedilinkEnglish4•5 months 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@qjkxbmwvz@startrek.websitelinkfedilink2•5 months 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
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).