Files
skel/dotfiles/zshrc.d/site2pdf.zsh
David Tomaschik b9cf6bae01 site2pdf support.
2015-11-18 01:23:20 -08:00

7 lines
143 B
Bash

function site2pdf {
setopt localoptions nounset
local URL=${1}
local OUTFILE=${2}
command wkhtmltopdf -s Letter -q ${URL} ${OUTFILE}
}