Skip to content

Instantly share code, notes, and snippets.

@thadeu
Created April 10, 2019 23:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thadeu/272a117b2a14e9f50f39bc0c4a60a7d9 to your computer and use it in GitHub Desktop.
Save thadeu/272a117b2a14e9f50f39bc0c4a60a7d9 to your computer and use it in GitHub Desktop.
Convert all files ERB to HAML within specific folder
for file in app/views/**/*.erb; do html2haml -e $file ${file%erb}haml && rm $file; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment