Created
September 26, 2022 07:54
-
-
Save tknr/a5731d0ef1a51520f9200b6d48a4a891 to your computer and use it in GitHub Desktop.
avif to jpg
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export IFS=$'\n';for file in `find . -iname "*.avif"`;do echo "${file} -> ${file%%.avif}.jpg";convert "${file}" "${file%%.avif}.jpg" && /bin/rm -vf "${file}";done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment