Help for this page

Select Code to Download


  1. or download this
    use File::Find;
    find(\&file_names, "/home/gube/");
    sub file_names {
    print "$File::Find::name\n" if(-f $File::Find::name);
    }
    
  2. or download this
    use File::Find;
    find(\&dir_names, "/home/gube/");
    sub dir_names {
     print "$File::Find::dir\n" if(-f $File::Find::dir,'/');
    }