#!/bin/sh

if [ -e /usr/lib/ICAClient ]; then

   cd /usr/lib/ICAClient
   ./wfcmgr $*

else
   echo "ICA executable doesn't exist"
fi

