Skip to content

Instantly share code, notes, and snippets.

@wikrie
Last active February 4, 2018 14:12
Show Gist options
  • Save wikrie/0697550158326528efcc1a4989d9a768 to your computer and use it in GitHub Desktop.
Save wikrie/0697550158326528efcc1a4989d9a768 to your computer and use it in GitHub Desktop.
shrink size of a pdf file terminal edition
#!/bin/bash
read -e -p "Please insert file: " file
if test -e $file
then pdf2ps $file tmp.ps && ps2pdf tmp.ps $file-small.pdf && rm tmp.ps
else echo "File not found!"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment