You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
323 B
10 lines
323 B
#!/bin/bash
|
|
|
|
rm -rf public/ pdf/
|
|
mkdir pdf
|
|
hugo
|
|
for dir in public/print/*
|
|
do
|
|
chromium --temp-profile --headless --disable-gpu --run-all-compositor-stages-before-draw --allow-file-access-from-files --allow-running-insecure-content --print-to-pdf-no-header --print-to-pdf="pdf/$(basename $dir).pdf" "${dir}/print.html"
|
|
done
|