Help for this page

Select Code to Download


  1. or download this
    if (open(FH, $file))
    {
        ...complicated logic extending many many lines....
    ...
    {
        warn "Couldn't open $file: $!"\n";
    }
    
  2. or download this
    unless (open(FH, $file))
    {
        ...send email, sound the klaxons, raise a ruckus, etc.
    ...
    {
        ....do fun stuff with FH
    }