Bash Script to scale and/or resize PDFs from the command line.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

17 satır
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)