Last active
September 7, 2017 16:18
-
-
Save zhm/1e08c09353da83517a65ff413ded96ff to your computer and use it in GitHub Desktop.
Install wkhtmltpdf on Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/sh | |
DOWNLOAD_URL="https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz" | |
cd ~ | |
wget $DOWNLOAD_URL -O ~/wkhtmltox.tar.xz | |
tar -xvf ~/wkhtmltox.tar.xz | |
# fulcrum reports --org 'ORG NAME' --form 'FORM NAME' --wkhtmltopdf "$HOME/wkhtmltox/bin/wkhtmltopdf" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment