Skip to content

Instantly share code, notes, and snippets.

@teefan
Forked from ebeigarts/gist:970898
Last active August 29, 2015 14:08
Show Gist options
  • Save teefan/194a4ff1523bf991cbac to your computer and use it in GitHub Desktop.
Save teefan/194a4ff1523bf991cbac to your computer and use it in GitHub Desktop.
for f in `find . -regex '.*\.html\.erb'`; do echo "Converting $f" && html2haml $f > "${f%.erb}.haml" && rm $f; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment