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