Created
September 26, 2016 17:51
-
-
Save theCrab/6b93e1bd1150feb62c522cb913395779 to your computer and use it in GitHub Desktop.
UNIX Rename files in a multi level folder structure
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
for file in ./sass/_*.scss; do | |
mv $file ${file//[_]}.scss # remove all underscores '_' | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment