IP : 3.139.85.206Hostname : server86.web-hosting.comKernel : Linux server86.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64Disable Function : None :) OS : Linux
PATH:
/
home/
./
./
../
../
home2/
../
home4/
../
bin/
ps2epsi/
/
#!/bin/sh
# This definition is changed on install to match the # executable name set in the makefile GS_EXECUTABLE=gs gs="`dirname \"$0\"`/$GS_EXECUTABLE" if test ! -x "$gs"; then gs="$GS_EXECUTABLE" fi GS_EXECUTABLE="$gs"
# try to create a temporary file securely if test -z "$TMPDIR"; then TMPDIR=/tmp fi if which mktemp >/dev/null 2>/dev/null; then tmpfile="`mktemp $TMPDIR/ps2epsi.XXXXXX`" else tmpdir=$TMPDIR/ps2epsi.$$ (umask 077 && mkdir "$tmpdir") if test ! -d "$tmpdir"; then echo "failed: could not create temporary file" exit 1 fi tmpfile="$tmpdir"/ps2epsi$$ fi trap "rm -rf \"$tmpfile\"" 0 1 2 3 7 13 15
export outfile
if [ $# -lt 1 -o $# -gt 2 ]; then echo "Usage: `basename \"$0\"` file.ps [file.epsi]" 1>&2 exit 1 fi
infile=$1;
if [ $# -eq 1 ] then case "${infile}" in *.ps) base=`basename "${infile}" .ps` ;; *.cps) base=`basename "${infile}" .cps` ;; *.eps) base=`basename "${infile}" .eps` ;; *.epsf) base=`basename "${infile}" .epsf` ;; *) base=`basename "${infile}"` ;; esac outfile=${base}.epsi else outfile=$2 fi