diff options
author | Aaron LI <aly@aaronly.me> | 2017-11-03 18:31:03 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2017-11-03 18:31:03 +0800 |
commit | bc87a53a283d7dec8c52cccf4689fb2d9765a277 (patch) | |
tree | 8a859562087f2999f901cce4eced0827c4a2b944 /unix/eps2pdf.sh | |
parent | b50463d171ade46f549c5331e8ad317b410ac0f2 (diff) | |
download | atoolbox-bc87a53a283d7dec8c52cccf4689fb2d9765a277.tar.bz2 |
Move several scripts from unix/ to cli/
Diffstat (limited to 'unix/eps2pdf.sh')
-rwxr-xr-x | unix/eps2pdf.sh | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/unix/eps2pdf.sh b/unix/eps2pdf.sh deleted file mode 100755 index b803732..0000000 --- a/unix/eps2pdf.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -# convert from eps to pdf using gs - -GS="`which gs`" -BASENAME="`basename $1 .eps`" -${GS} -sDEVICE=pdfwrite -dNOPAUSE -dQUIET -sOutputFile=${BASENAME}.pdf - < $1 - |