1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-11-18 12:52:44 +00:00
dotfiles/.config/fish/functions/xcompress.fish

10 lines
172 B
Fish
Raw Normal View History

function xcompress
2020-04-28 02:19:53 +00:00
if test -d $argv
tar -cf $argv.tar $argv
xz -efvk9T 0 $argv.tar
rm $argv.tar
2019-09-24 02:06:19 +00:00
else
xz -efvk9T 0 $argv
end
end