#!/bin/sh
#
#
# (c) 2002 Sun Microsystems, Inc. Use is subject to license terms.  

# change the path to your needs
F=/tmp/clean.out

touch $F
echo ----------------------------------  >> $F 2>&1
echo I am: `id`				 >> $F 2>&1
echo Clean command called at `date`      >> $F 2>&1
echo Myargs: $*				 >> $F 2>&1
echo done				 >> $F 2>&1
echo                                     >> $F 2>&1

# Log information about our checkpoints
/usr/bin/hibinfo                         >> $F 2>&1

/usr/bin/hibrm sge_$1                    >> $F 2>&1
