#!/bin/sh
echo External programs called: xpmap $*
if [ -f $BINDIR/xpmap ]
then
 xpmap $*
else
 pmap $*
fi
