Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use File::Find;
    ...
    if($! =~ /not empty/){warn "$File::Find::name $!"}
    }, @ARGV;
    
  2. or download this
    #!/usr/bin/perl
    use File::Find;
    ...
    return if (! -d) or ($_ eq '.'|'..');
    rmdir($_)}, @ARGV;