Help for this page

Select Code to Download


  1. or download this
    local $_;
    for(readdir DIR) {
        $filesize{$_} = -s if /\.log$/i;
    }
    
  2. or download this
    local $_;
    for(readdir DIR) {
        $filesize{$_} = (stat($_))[7] if /\.log$/i;
    }