in reply to Finding and Moving hidden files in Unix
use File::Find; find (\&wanted, '/your/directory'); sub wanted { print $File::Find::name . "\n" if ( /^\./ && -f $_ ); } [download]