Created
August 18, 2017 17:39
-
-
Save obabawale/3bd1162c2bd553259f0dd731b36d64b0 to your computer and use it in GitHub Desktop.
How to install wkhtmltopdf.tar.xz on Linux Ubuntu systems
This file contains hidden or 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
download=http://download.gna.org/wkhtmltopdf/0.12/0.12.3/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz | |
wget $download -O wkhtmltox.tar.xz | |
tar xf wkhtmltox.tar.xz | |
sudo mv wkhtmltox/bin/* /usr/local/bin/ | |
rm -Rf wkhtmltox* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi there, this code was a huge help, thank you!