Skip to content

Instantly share code, notes, and snippets.

@DerekV
Last active December 13, 2015 17:28
Show Gist options
  • Save DerekV/4948062 to your computer and use it in GitHub Desktop.
Save DerekV/4948062 to your computer and use it in GitHub Desktop.
random clips and one-liners
# 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