aboutsummaryrefslogtreecommitdiffstats
path: root/unix/eps2pdf.sh
diff options
context:
space:
mode:
authorAaron LI <aly@aaronly.me>2017-11-03 18:31:03 +0800
committerAaron LI <aly@aaronly.me>2017-11-03 18:31:03 +0800
commitbc87a53a283d7dec8c52cccf4689fb2d9765a277 (patch)
tree8a859562087f2999f901cce4eced0827c4a2b944 /unix/eps2pdf.sh
parentb50463d171ade46f549c5331e8ad317b410ac0f2 (diff)
downloadatoolbox-bc87a53a283d7dec8c52cccf4689fb2d9765a277.tar.bz2
Move several scripts from unix/ to cli/
Diffstat (limited to 'unix/eps2pdf.sh')
-rwxr-xr-xunix/eps2pdf.sh8
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
-