#!/bin/tcsh
#
set a = `ls -la $1/* | wc -l`
#echo $a
if ($a == 173519) then
echo 'OK'
rm -rf $1 &
endif
#

