Help for this page

Select Code to Download


  1. or download this
    my $source = “/mnt/usbdisk”;
    
    ...
        my $msg = $source;
        ...
    {
    
  2. or download this
    sub myfind {
       my ($code, @args) = @_;
       find(sub { $code->(@args)})
    }
    
  3. or download this
    myfind \&Recursive, $source;