#!/bin/sh

what=`echo $0 | sed 's@.*/@@'`

p=`kpsewhich -progname=context -format='other text files' $what.pl`
{ test -n "$p" && test -f "$p"; } || { echo "\`$what.pl' not found."; exit 1; }

perl "$p" "$@"
