Help for this page

Select Code to Download


  1. or download this
    if (grep { -f $_ and $_ eq $FilePath } @DirsArray){}
    else{
    
  2. or download this
    unless ( grep { -f $_ and $_ eq $FilePath } @DirsArray ) {
    
  3. or download this
       printf("\n" . $FilePath . "\n");
    
  4. or download this
       print "\n" . $FilePath . "\n";
    
  5. or download this
       while ( $line = <FILE> ) {
            
          push(@outLines, $line); #to be sent to appended large file
       }
    
  6. or download this
       push @outLines, <FILE>; #to be sent to appended large file