Skip to content

Instantly share code, notes, and snippets.

@alexanderschnitzler
Created May 11, 2013 16:02
Show Gist options
  • Save alexanderschnitzler/5560390 to your computer and use it in GitHub Desktop.
Save alexanderschnitzler/5560390 to your computer and use it in GitHub Desktop.
# Rename files with prefixes:
#
# ./bootstrap-affix.js
# ./bootstrap-alert.js
# ...
for file in * ; do echo mv $file ${file#bootstrap-} ; done ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment