Bash Script to scale and/or resize PDFs from the command line.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
233 B

  1. # Installs to /usr/local/bin
  2. # Change variables to adjust locations
  3. #
  4. # Jul 10 2016 - Gustavo Neves
  5. IDIR=/usr/local/bin
  6. IFILE=$(IDIR)/pdfscale
  7. all:
  8. install:
  9. cp pdfScale.sh $(IFILE)
  10. chmod 755 $(IFILE)
  11. uninstall:
  12. rm -f $(IFILE)