#!/bin/sh

# A simple command-line wrapper for PythonCard's findfiless tool.
# Copyright (c) Kenneth J. Pronovici <pronovic@debian.org>; use as you wish.

if [ -d /usr/lib/python2.3/site-packages/PythonCardPrototype ]; then
   exec /usr/bin/python2.3 \
   /usr/lib/python2.3/site-packages/PythonCardPrototype/tools/findfiles/findfiles.py "$@"
else
   echo "Unable to find PythonCardPrototype installation."
fi

