Skip to content

Instantly share code, notes, and snippets.

@renatoassis01
Last active September 2, 2020 21:17
Show Gist options
  • Save renatoassis01/39a032a3c9a72970ef23b6b9642ea8bc to your computer and use it in GitHub Desktop.
Save renatoassis01/39a032a3c9a72970ef23b6b9642ea8bc to your computer and use it in GitHub Desktop.

rename extension in batch

for x in *.webp; do mv "$x" "${x%.webp}.png"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment