#!/bin/sh
# handle eps file for latex, graphics version, expects args %f %S
set -e			# die on any error
IN=$2			# input file, and also the output file

[ -f "$IN" ] || exit 1	# ensure our file exists

echo \\includegraphics{$IN}