I'm looking to convert an entire directory of HTML to HAML so that the files have the same name but with a new extension.

html2haml file.html.erb file.haml

Can I run a loop so that I can convert all these files all at once so that the name is the same just the extension is changed?

My files:

continue_login.html.erb
expired_trial.html.erb
expired_trial.mobile.erb
login.html.erb
login.mobile.erb
recover_password.html.erb
signup.html.erb
trial_expires_soon.html.erb
trial_expires_soon.mobile.erb
link|improve this question

feedback

2 Answers

up vote 8 down vote accepted

It's not sexy but it's working:

for file in $(find . -type f -name \*.html.erb); do
  html2haml -e ${file} "$(dirname ${file})/$(basename ${file} .erb).haml";
done

(Pay attention to the -e flag of html2haml it parses the ERb tags.)

link|improve this answer
You are NINJA KARASZI – Trip Feb 22 at 16:52
Throw this in there for f in *.html.erb; do rm $f; done And you can clean up the old *.html.erb files – Trip Feb 22 at 18:07
Just to add, backticks fork a new process, so it's better practice to use $(...) – Eric Feb 22 at 18:30
What do you mean by $(...)? – tadman Feb 22 at 18:48
@Eric: thank you, I changed from backticks, but it will fork a process anyway. – KARASZI István Feb 22 at 22:59
show 1 more comment
feedback

You could do something like this:

for f in *.html.erb; do html2haml $f ${f/\.html\.erb/.haml}; done

Edit: If you need to look for template files recursively and you're using bash 4.x, then you can use globstar:

shopt -s globstar
for f in **/*.html.erb; do html2haml $f ${f/\.html\.erb/.haml}; done
link|improve this answer
It's not recursive, but I like the replacement. – KARASZI István Feb 22 at 16:33
@KARASZIIstván Thanks for your comment (and for the edit). I've updated the answer to use the recursive globbing feature available in bash 4.x. – jcollado Feb 22 at 16:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.