Ubuntu – Recursive HTML to PDF

htmlpdf

I have a folder with this structure:

/main-folder
 /index.html
 /subfolder1
    /index1.html
    /file1.html

with many sub folder and only html files… i want to convert all them to pdf using only one command or a simple script that doesn't require all file names.

Do you know one

Best Answer

I would suggest installing the WKHtmlToPDF tool from http://wkhtmltopdf.org/ (moved from: http://code.google.com/p/wkhtmltopdf/).

You can then change to the root folder and use find and xargs to convert them:

cd /main-folder
find . -name \*.html | sed 's/.html$//g' | xargs -n 1 --replace=X wkhtmltopdf X.html X.pdf

This will then build a PDF with each HTML file.