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.
11 lines
329 B
11 lines
329 B
|
4 years ago
|
#!/bin/bash
|
||
|
|
|
||
|
|
rm -rf public/
|
||
|
|
hugo
|
||
|
|
rm -rf pdf
|
||
|
|
mkdir pdf
|
||
|
|
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
|