Skip to content

Instantly share code, notes, and snippets.

@tknr
Created September 26, 2022 07:54
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tknr/a5731d0ef1a51520f9200b6d48a4a891 to your computer and use it in GitHub Desktop.
Save tknr/a5731d0ef1a51520f9200b6d48a4a891 to your computer and use it in GitHub Desktop.
avif to jpg
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