Help for this page

Select Code to Download


  1. or download this
    @ARGV = <$LOGDIR/*.log>;
    
  2. or download this
    my @fileList = glob($LOGDIR/*.log);
    while (@fileList) {
    ...
    }
    
  3. or download this
    s/L//;