> if [ "$SECURE_TMP" = "yes" -o "$SECURE_TMP" = "1" -o "$SECURE_TMP" = "YES"
> -o "$SECURE_TMP" > 3 ];then 
> 
> and I changed it to:
> 
> if [ "$SECURE_TMP" = "yes" -o "$SECURE_TMP" = "1" -o "$SECURE_TMP" = "YES"
> ];then 
> 
> not sure if this is correct, but now I don't get the "3" file showing up any
> more.

You should use:
if [ "$SECURE_TMP" = "yes" -o "$SECURE_TMP" = "1" -o "$SECURE_TMP" = "YES"
-o "$SECURE_TMP" -gt 3 ];then

-- 
man test

Reply via email to