#!/bin/csh
########################################################################
# FILE: prog3
# DESCRIPTION:
#   Trivial shell script used as part of MPMD portion of POE exercise 
# AUTHOR: Blaise Barney
# LAST REVISED: 04/02/05
########################################################################
echo '**************************************************************'
echo -n 'Program 3 is running on '
hostname
echo  'Your current processes on this machine are:'
set me = `whoami`
ps aux|grep $me
echo 'END OF PROG3'

