home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 June / PCpro_2005_06.ISO / files / opensource / inkscape / Inkscape-0.41-1.exe / share / extensions / ps2epsi.sh < prev    next >
Encoding:
Linux/UNIX/POSIX Shell Script  |  2005-02-09  |  130 b   |  8 lines

  1. #!/bin/sh
  2.  
  3. TEMPFILENAME=/tmp/tmpepsifile.epsi
  4.  
  5. ps2epsi "$1" "${TEMPFILENAME}" &> /dev/null
  6. cat ${TEMPFILENAME}
  7. rm ${TEMPFILENAME}
  8.