Help for this page

Select Code to Download


  1. or download this
            unless ($return = do $file) {
                warn "couldn't parse $file: $@" if $@;
                warn "couldn't do $file: $!"    unless defined $return;
                warn "couldn't run $file"       unless $return;
            }
    
  2. or download this
            if (-e "/path/to/file") {
                     # do something here;
            }