Skip to content

Instantly share code, notes, and snippets.

@GuyPaddock
Created May 3, 2021 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GuyPaddock/029b9ab7bb113d5b5aea19dc85293857 to your computer and use it in GitHub Desktop.
Save GuyPaddock/029b9ab7bb113d5b5aea19dc85293857 to your computer and use it in GitHub Desktop.
Add TIFF extension to all files
#!/usr/bin/env bash
find . -not -name '*.tiff' -type f -exec mv '{}' '{}.tiff' ';'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment