Skip to content

Instantly share code, notes, and snippets.

@leemour
Created December 29, 2015 12:00
Show Gist options
  • Save leemour/13385e462ff1d09857b9 to your computer and use it in GitHub Desktop.
Save leemour/13385e462ff1d09857b9 to your computer and use it in GitHub Desktop.
Rename files, change extension in subdirectories
for file in $(find `pwd` -name "*.html.slim"); do
mv "$file" "`dirname $file`/`basename $file .html.slim`.slim"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment