Listing 4: Sun System
#!/bin/ksh
#
# Class: SunSystem
####################################################################
## Construct from Base class first
. UnixSystem $1
## _GetWindow() ####################################################
eval "${ObjectId}_GetWindow() { ARGS=\$1
if [[ \$ARGS = \"\" ]]; then
ARGS=\"/bin/ksh\"
fi
eval $RCMD $ObjectId \\
'/usr/openwin/bin/xterm -display \$DISPLAY -e \$ARGS'
}"
# End of File
|