Hello,
I occasionally have to download a bunch of web pages, turn them into PDF, and merge them all into a single PDF file.
Do you know of a way to automate that?
1. From list, download web pages including pictures: wget ?
2. Convert each into PDF: cpdf/mutool/qpdf?
3. Merge all into single PDF:
Code:
@echo off
setlocal enabledelayedexpansion
set f=
for %%f in (*.pdf) do set f=!f! "%%f"
echo %f%
mutool merge -o full.pdf -O compress %f%
Thank you.