Help for this page

Select Code to Download


  1. or download this
    [michael]$ find2perl /path/to/directory -name '*.b' -exec rm {} \;
    
  2. or download this
    #! /usr/bin/perl -w
    
    ...
    # Traverse desired filesystems
    File::Find::find({wanted => \&wanted}, '/path/to/directory');
    exit;