Skip to content

Instantly share code, notes, and snippets.

View billguy's full-sized avatar

David John billguy

View GitHub Profile
@rmehner
rmehner / install_pdftk.sh
Last active May 6, 2021 03:54
Install PDFTk without touching up the permissions
#!/usr/bin/env bash
# This is based on this excellent gist https://gist.github.com/jvenator/9672772a631c117da151
# Nothing of this is my original work, except that I made the download link an argument
# to this script, so it installs on OSX 10.11
#
# Thank you jvenator & sethetter
set -e
error() { info "$1"; exit 1; }