http://www.perlmonks.org?node_id=427674


in reply to File::find question

Just unlink them like this:

find (sub { unlink($File::Find::name) if /\.results$/} , @directories );

Replies are listed 'Best First'.
Re^2: File::find question
by Anonymous Monk on Feb 03, 2005 at 15:37 UTC
    thanks for that