Last active 1752994434

jce revised this gist 1752994434. Go to revision

No changes

jce revised this gist 1747223256. Go to revision

1 file changed, 11 insertions

jpg-jxl_convert.sh(file created)

@@ -0,0 +1,11 @@
1 + #!/bin/sh
2 +
3 + # Requires cjxl utility
4 + for i in *.jpg;
5 + do name=`echo "$i" | cut -d'.' -f1`
6 + echo "$name"
7 + cjxl "$i" "${name}.jxl"
8 + done
9 +
10 + # Clean old JPG files
11 + rm *.jpg
Newer Older