Help for this page

Select Code to Download


  1. or download this
    my (@files) = glob "c:/progs/*"; #list of progs
    my (@dirs, @binfiles, @textfiles);
    ...
      -f $f  && -B $f ? push @binfiles, $f :
      -f $f  && -T $f ? push @textfiles, $f : next; 
    }