Skip to content

Instantly share code, notes, and snippets.

@micahblu
Created March 9, 2015 17:56
Show Gist options
  • Save micahblu/6b3a220f53bda40e7d6d to your computer and use it in GitHub Desktop.
Save micahblu/6b3a220f53bda40e7d6d to your computer and use it in GitHub Desktop.
search and replace all filenames
find . -name '*.scss' -exec bash -c 'mv "$1" "${1/.scss/.less}"' -- {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment