Macos 一键 使用 wkhtmltopdf 将 html 转换为 pdf
文章目录
安装 wkhtmltopdf
-
使用 brew 进行安装
1brew install --cask wkhtmltopdf -
将目录下的所有
html文件一键转换为 pdf 格式1for f in *.html; do wkhtmltopdf --load-error-handling ignore -n --enable-local-file-access $f "$f.pdf"; done
使用 brew 进行安装
|
|
将目录下的所有 html 文件一键转换为 pdf 格式
|
|