Help for this page

Select Code to Download


  1. or download this
    find( \&search_all_folder, $path );
    
    ...
        return if $_ eq '.' or $_ eq '..';
        read_files($_) if (-f);
    }
    
  2. or download this
    sub read_files {
        my ($filename) = @_;
    ...
            print $_, $/;
        }
    }