diff --git a/BashScripts/install-pdftk.sh b/BashScripts/install-pdftk.sh new file mode 100644 index 0000000..d4ea4a9 --- /dev/null +++ b/BashScripts/install-pdftk.sh @@ -0,0 +1,30 @@ +# Install using: sudo su -c "bash <(wget -qO- /url/to/install-pdftk.sh)" +# description: bash script to install pdftk on Ubuntu 18.04 for amd64 machines + +# Make sure script is ran as root +if [[ $EUID -ne 0 ]]; then + exec sudo /bin/bash "$0" "$@" +fi + +cd /tmp + +wget http://launchpadlibrarian.net/340410966/libgcj17_6.4.0-8ubuntu1_amd64.deb \ + http://launchpadlibrarian.net/337429932/libgcj-common_6.4-3ubuntu1_all.deb \ + https://launchpad.net/ubuntu/+source/pdftk/2.02-4build1/+build/10581759/+files/pdftk_2.02-4build1_amd64.deb \ + https://launchpad.net/ubuntu/+source/pdftk/2.02-4build1/+build/10581759/+files/pdftk-dbg_2.02-4build1_amd64.deb + + +echo -e "Packages for pdftk downloaded\n\n" + +echo -e "\n\n Installing pdftk: \n\n" +sudo apt-get install ./libgcj17_6.4.0-8ubuntu1_amd64.deb \ + ./libgcj-common_6.4-3ubuntu1_all.deb \ + ./pdftk_2.02-4build1_amd64.deb \ + ./pdftk-dbg_2.02-4build1_amd64.deb +echo -e "\n\n pdftk installed\n" +echo -e " try it in shell with: > pdftk \n" + +rm ./libgcj17_6.4.0-8ubuntu1_amd64.deb +rm ./libgcj-common_6.4-3ubuntu1_all.deb +rm ./pdftk_2.02-4build1_amd64.deb +rm ./pdftk-dbg_2.02-4build1_amd64.deb \ No newline at end of file