Last active
October 16, 2016 17:09
-
-
Save taylor-jones/210e692399c0aa0a1663f34b5a3fd4db to your computer and use it in GitHub Desktop.
Recursively change file extension w/ cmd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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