in reply to Re^2: Faster Method for check function.
in thread Faster Method for check function.

I ment less lenghty way

... in which case we could further shorten the unless($zipcheck) by 3 characters to if(!$zipcheck)...

-- 
Ronald Fischer <ynnor@mm.st>

Replies are listed 'Best First'.
Re^4: Faster Method for check function.
by Transient (Hermit) on Jun 16, 2009 at 14:28 UTC
    and grep /\.zip\z/, @uploads could be grep /\.zip$/, @uploads for a savings of one, but now I think we're just splitting hairs =)