From ec3297cb1d486f62534dea0b99e94f22c88891cb Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Mon, 7 Apr 2014 13:12:57 +0200 Subject: [PATCH] add pdfextract function --- .zsh/zshrc/30_aliases | 7 +++++++ 1 file changed, 7 insertions(+) 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 -- 2.39.2