Last active
December 13, 2015 17:28
-
-
Save DerekV/4948062 to your computer and use it in GitHub Desktop.
random clips and one-liners
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
# case one | |
for f in *; do git mv $f `echo $f | tr [:upper:] [:lower:] | sed "s/chart/bnftchart/"` ; done | |
# case two, w/ case-sensitivity work around | |
for f in *; do git mv $f $f.new; git mv $f.new `echo $f | tr [:upper:] [:lower:] ` ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment