X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=.zsh%2Fzshrc%2F30_aliases;h=7ae129991bf02b1f6247e97f81d0e9005f50e0f2;hb=ec3297cb1d486f62534dea0b99e94f22c88891cb;hp=8e4ff53cd812237473e5911d665cdfab5035e404;hpb=414a3ee427b617a3749724fef7dea496780edf4e;p=zsh.git 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