Skip to content

Instantly share code, notes, and snippets.

@taylor-jones
Last active October 16, 2016 17:09
Show Gist options
  • Save taylor-jones/210e692399c0aa0a1663f34b5a3fd4db to your computer and use it in GitHub Desktop.
Save taylor-jones/210e692399c0aa0a1663f34b5a3fd4db to your computer and use it in GitHub Desktop.
Recursively change file extension w/ cmd
REM :: USING THE COMMAND PROMPT:
REM :: Recursively change file extensions in a directory.
REM :: The example below changes all .css files to .scss files:
for /R %x in (*.css) do ren "%x" *.scss
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment