Krafting@lemmy.world to linuxmemes@lemmy.world · 1 year agothe fear of missing out a better compressionlemmy.worldimagemessage-square93fedilinkarrow-up1804arrow-down18file-text
arrow-up1796arrow-down1imagethe fear of missing out a better compressionlemmy.worldKrafting@lemmy.world to linuxmemes@lemmy.world · 1 year agomessage-square93fedilinkfile-text
minus-squareqjkxbmwvz@startrek.websitelinkfedilinkarrow-up27arrow-down1·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-squareMidnight1938@reddthat.comlinkfedilinkarrow-up6·1 year agoSomething like wget avc.com | tar xvf ?
minus-squareu/lukmly013 💾 (lemmy.sdf.org)@lemmy.sdf.orglinkfedilinkEnglisharrow-up10·1 year agoAlmost, I think. wget -O - http://example.com/archive.tar | tar -xvf -
minus-squareMidnight1938@reddthat.comlinkfedilinkarrow-up5·1 year agoDidnt think this would ever work
minus-squareu/lukmly013 💾 (lemmy.sdf.org)@lemmy.sdf.orglinkfedilinkEnglisharrow-up3·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-squareqjkxbmwvz@startrek.websitelinkfedilinkarrow-up2·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’llwgetto stdout, and tar from stdin. Archive gets extracted on the fly.I have (successfully!) written an
.isoto 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).