From: martin f. krafft Date: Mon, 7 Apr 2014 11:12:57 +0000 (+0200) Subject: add pdfextract function X-Git-Url: https://git.madduck.net/etc/zsh.git/commitdiff_plain/ec3297cb1d486f62534dea0b99e94f22c88891cb add pdfextract function --- diff --git a/.zsh/zshrc/30_aliases b/.zsh/zshrc/30_aliases index 8e4ff53..7ae1299 100644 --- a/.zsh/zshrc/30_aliases +++ b/.zsh/zshrc/30_aliases @@ -206,4 +206,11 @@ if whence devtodo >/dev/null; then [[ -z ${(M)chpwd_functions:#_devtodo_on_chpwd} ]] && chpwd_functions+=_devtodo_on_chpwd fi +pdfextract() { + local i=$1 + local o=$2 + shift 2 + pdftk "$i" cat "${@:-1-end}" output "${o%.pdf}.pdf" +} +compdef _files pdfextract # vim:ft=zsh