Help for this page

Select Code to Download


  1. or download this
    @files = grep("EXP", readdir(DIR));
    
  2. or download this
    my @files = grep { /EXP/ } readdir(DIR);
    
  3. or download this
    my @files = glob ("/home/grds/datafile/*EXP*.*");