mirror of
https://github.com/Matir/skel.git
synced 2026-05-25 21:19:09 -07:00
7 lines
143 B
Bash
7 lines
143 B
Bash
function site2pdf {
|
|
setopt localoptions nounset
|
|
local URL=${1}
|
|
local OUTFILE=${2}
|
|
command wkhtmltopdf -s Letter -q ${URL} ${OUTFILE}
|
|
}
|