1
0
Fork 0
mirror of https://github.com/Phantop/dotfiles synced 2024-09-20 00:49:15 +00:00
dotfiles/.config/fish/functions/xcompress.fish

11 lines
226 B
Fish

# Defined in /tmp/fish.83qvw2/xcompress.fish @ line 2
function xcompress
if test -d $argv
tar -cf $argv.tar $argv
xz -efvk9T 0 $argv.tar
rm $argv.tar
else
xz -efvk9T 0 $argv
end
end