I deleted the original and just kept this fix.  Problem is, somebody cut
out the name of the file being edited here.  So I need a fix for this
fix. :)

Xavier Bertou wrote:
> 
> > 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

-- 
Digital Wokan, Tribal Mage of the Electronics Age
Guerilla Linux Warrior

Reply via email to