Bash Script to scale and/or resize PDFs from the command line.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

17 行
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)