#!/bin/ksh echo "${0##*/}: The user.cleanup script is running in directory: " pwd if [ "$CMD" = "pvm.script" ] then echo "${0##*/}: Copying back pvm log file to ./pvmlog ... " cp /tmp/pvml.$MYUID $INITIALDIR/pvmlog if [ "$XPVMFLAG" = "yes" ] then echo "${0##*/}: Copying back xpvm trace file to ./xpvmtrace.$CLUSTER ... " cp $TMPDIR/xpvm.trace.$CLUSTER $INITIALDIR fi fi #for host in $hostlist #do # echo "Here is where I would copy back output from ${host} ..." #done echo "${0##*/}: Finishing the user.cleanup script."