Help for this page

Select Code to Download


  1. or download this
    given ($line) {
        when ( m{\A Job:  }xms ) { $job_details_info{Job} = $line }
        when ( m{\A File: }xms ) { push @files, $line }
        when ( m{\A Image }xms ) { $job_details_info{Image} = $line }
    }
    
  2. or download this
    use List::Util qw( first );
    
    ...
    else {
        warn "no match: $line";
    }