#!/bin/sh
# handle tgif file for html, expects args %f %S
set -e			# die on any error
IN=$2			# input file

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

echo "<IMG SRC=\"$IN\">"
