in reply to Re: Process mail logs
in thread Process mail logs

Actually, you should try and refrain from using given/when. Brian D Foy explains why Here

A pretty nice alternative I use, is

for ($string) { # given if (/<=/) { .. } # when elsif (/=>/) { .. } # when else { .. } # default }

Replies are listed 'Best First'.
Re^3: Process mail logs
by Kenosis (Priest) on Aug 13, 2012 at 20:19 UTC

    Good call to address this given/when issue. Have updated my original post to reflect this...