Skip to content

Instantly share code, notes, and snippets.

@Joao-Peterson
Created October 17, 2022 15:25
Show Gist options
  • Save Joao-Peterson/d0f796a081f7d18feddadf1ec7988f1d to your computer and use it in GitHub Desktop.
Save Joao-Peterson/d0f796a081f7d18feddadf1ec7988f1d to your computer and use it in GitHub Desktop.
Rename a batch of files to lowercase

Rename a batch of files to lowercase

Using the perl-rename tool:

$ pacman -S perl-rename

Then:

$ perl-rename 's/([A-Z]+)/\L$1/' *.png
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment