19 lines
330 B
Fish
19 lines
330 B
Fish
#!/usr/bin/fish
|
|
|
|
if type --query gm
|
|
else
|
|
echo -e "GraphicsMagick is missing."
|
|
exit 1
|
|
end
|
|
if type --query cjxl
|
|
else
|
|
echo -e "A JPEGXL encoder (cjxl) is missing."
|
|
exit 1
|
|
end
|
|
if type --query avifenc
|
|
else
|
|
echo -e "An AVIF encoder (avifenc) is missing."
|
|
exit 1
|
|
end
|
|
|
|
fd --glob "**/*.{jpg,jpeg}" -x fish lol.fish
|