Listing 2: HP System
#!/bin/ksh
#
# Class: HPSystem
####################################################################
## Construct from Base class first
. UnixSystem $1
## _GetWindow() ####################################################
eval "${ObjectId}_GetWindow() { ARGS=\$1
if [[ \$ARGS = \"\" ]]; then
ARGS=\"/bin/ksh\"
fi
eval $RCMD $ObjectId \\
'/usr/bin/X11/hpterm -display \$DISPLAY -exec \$ARGS'
}"
## _PerfMon() ######################################################
eval "${ObjectId}_PerfMon() {
eval $RCMD $ObjectId \\
'/usr/bin/X11/hpterm -display \$DISPLAY -exec glance'
}"
# End of File
|