See below.quick start:
# execute a generic help function:
# force the shellscript to exit if a help option is encountered.
set -e;
isip_function_help_0 $*;
set +e;
# append the window name option (must be last)
#
if (test "$DISPLAY") then
OPTIONS=$OPTIONS" $OPTION_WINDOW_NAME";
# create a new window name
#
WINDOW_NAME=`isip_function_window_name_0 $TOOL_NAME`;
else
WINDOW_NAME="";
fi
description: