Bash Script to scale and/or resize PDFs from the command line.
您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
- # Installs to /usr/local/bin
- # Change variables to adjust locations
- #
- # Jul 10 2016 - Gustavo Neves
-
- IDIR=/usr/local/bin
- IFILE=$(IDIR)/pdfscale
-
- all:
-
- install:
- cp pdfScale.sh $(IFILE)
- chmod 755 $(IFILE)
-
- uninstall:
- rm -f $(IFILE)
|