Help for this page

Select Code to Download


  1. or download this
                                      v-- what's that @?
    my @files = grep(/ap|ck_hm1_111/, @readdir(DIR))
    
  2. or download this
    my @files = grep /(?:ap|ck)_hm1_111/, sort { lc $a cmp lc $b } readdir
    +(DIR);