In a simple website I'm working on, I have a directory haml and a directory pages. The haml folder contains the .haml files I work on, and the pages folder contains my converted .html files.
I know I can convert the files, from the website root directory, by doing:
haml haml/about.haml pages/about.html for each file.
However, is there a way to convert all the .haml files in my haml folder to an equivalent .html file in the pages folder?
Something like: haml haml/*.haml html/*.html
Thanks!