Last active
August 30, 2018 00:08
-
-
Save leyanlo/f1ed5ae03b9ae2364c4ce42240ca9e88 to your computer and use it in GitHub Desktop.
Script to convert camelCase filenames to snake_case
This file contains 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
#!/bin/bash | |
# Recurse through subdirectories and convert camelCase filenames to snake_case | |
for file in */**/*.* ; do | |
mv "$file" "$(echo $file|gsed -e 's/\([A-Z]\)/_\1/g' -e 's/^.\/_//'|awk '{print tolower($0)}')" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment