#!/bin/tcsh -f
#

echo "$*" | grep -e '-r' >& /dev/null

if ( $status != 0 ) then
   /home/tesfdm/bin/cleanSSD $*
   exit
endif

if ( `hostname` != 'asellus' ) then
   echo "Error, can only be executed on host 'asellus'"
   exit
endif 

/data/bin/runscript cleanSSD $*

