Skip to content

Instantly share code, notes, and snippets.

@umkasanki
Created November 28, 2020 08:35
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 umkasanki/253c23fd17f0f75d3e7ce125c5dcb7d6 to your computer and use it in GitHub Desktop.
Save umkasanki/253c23fd17f0f75d3e7ce125c5dcb7d6 to your computer and use it in GitHub Desktop.
Bash. Change filename of multiple files
find . -name '*.pcss' -exec sh -c 'mv "$0" "${0%.pcss}.scss"' {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment