1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-30 14:10:15 +00:00
dotfiles/.config/fish/functions/zcompress.fish

11 lines
226 B
Fish
Raw Normal View History

2020-08-09 16:11:50 +00:00
# Defined in /tmp/fish.E9SjCK/zcompress.fish @ line 2
2020-07-06 20:55:03 +00:00
function zcompress
if test -d $argv
tar -cf $argv.tar $argv
2020-08-09 16:11:50 +00:00
zstd -T0 -19 $argv.tar
2020-07-06 20:55:03 +00:00
rm $argv.tar
else
2020-08-09 16:11:50 +00:00
zstd -T0 -19 $argv
2020-07-06 20:55:03 +00:00
end
end