Krafting to [email protected] • 6 months agothe fear of missing out a better compressionlemmy.worldmessage-square189fedilinkarrow-up1923file-text
arrow-up1923imagethe fear of missing out a better compressionlemmy.worldKrafting to [email protected] • 6 months agomessage-square189fedilinkfile-text
minus-squareEager EaglelinkfedilinkEnglish15•edit-26 months agoI use the command line every day, but can’t be bothered with all the compression options of tar and company. zip -r thing.zip things/ and unzip thing.zip are temptingly more straightforward. Need more compression? zip -r -9 thing.zip things/. Need a faster option? Use a smaller digit.
minus-square@[email protected]linkfedilink20•6 months ago“yes i would love to tar -xvjpf my files” – statement dreamed up by the utterly insane
minus-square@[email protected]linkfedilinkEnglish15•6 months agotar czf thing.tgz things/ tar xzf thing.tgz
minus-square@[email protected]linkfedilink3•6 months agoThere’s thefuck, but it hasn’t given me good suggestions.
minus-squarelinuxgatorlinkEnglish2•6 months agotar xf things.tar.gz/bz2/etc Should be enough to extract. It can usually figure out the compression automatically.
minus-square@[email protected]linkfedilink4•6 months agoThe problem with that is that it will not preserve flags and access rights.
I use the command line every day, but can’t be bothered with all the compression options of tar and company.
zip -r thing.zip things/
andunzip thing.zip
are temptingly more straightforward.Need more compression?
zip -r -9 thing.zip things/
. Need a faster option? Use a smaller digit.“yes i would love to
tar -xvjpf
my files”– statement dreamed up by the utterly insane
Present, I’m the
tar cvJf
insanetar czf thing.tgz things/ tar xzf thing.tgz
yes, and you still need zhe mnemonics
Removed by mod
There’s
thefuck
, but it hasn’t given me good suggestions.tar xf things.tar.gz/bz2/etc Should be enough to extract. It can usually figure out the compression automatically.
The problem with that is that it will not preserve flags and access rights.