X-Git-Url: https://git.madduck.net/etc/zsh.git/blobdiff_plain/414a3ee427b617a3749724fef7dea496780edf4e..ec3297cb1d486f62534dea0b99e94f22c88891cb:/.zsh/zshrc/30_aliases 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