Help for this page

Select Code to Download


  1. or download this
    $find_file = '/home/camel/file';
    
  2. or download this
    @list_of_file = ('/home/camel/file 42',
                     '/home/camel/file2 43',
                        ...
    
  3. or download this
    foreach $line (@list_of_files){
        if ($line =~ /$find_file/){
                  print ($line);
               }
    }