#!/bin/sh

if ( test $# -lt 1 )
then
 echo "The use of "usp which" reveals which USP binary within the"
 echo "/apps/dist structure will be executed for a particular program."
 echo " "
 echo "Usage: usp which usp-program-name"
 echo " "
fi

APP=$1

. usp-set-path

echo ${APP}
