Help for this page

Select Code to Download


  1. or download this
    
    foreach my $line (@input){
        if ( /fred/ ){
    
  2. or download this
    
    foreach my $line (@input){
        if ( $_ =~ /fred/ ){
    
  3. or download this
    
    foreach my $line (@input){
        if ( $line =~ /fred/ ){