Skip to content

Instantly share code, notes, and snippets.

@aaronwolen
Created September 29, 2021 19:11
Show Gist options
  • Save aaronwolen/680aff45e49ea5a79845789e6ea73a6d to your computer and use it in GitHub Desktop.
Save aaronwolen/680aff45e49ea5a79845789e6ea73a6d to your computer and use it in GitHub Desktop.
Find and rename files
while read line; do
mv -v "$line" "${line// - /}"
done < <(find . -name '* .png')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment