1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-20 00:49:15 +00:00
dotfiles/.config/fish/functions/zcompress.fish
2020-07-06 16:55:03 -04:00

11 lines
218 B
Fish

# Defined in /tmp/fish.PGT46K/zcompress.fish @ line 2
function zcompress
if test -d $argv
tar -cf $argv.tar $argv
zstd -19 $argv.tar
rm $argv.tar
else
zstd -19 $argv
end
end