in reply to Re^2: file::find questionin thread file::find question
# Sticking with pattern matching find_me( $fs, $fs =~ m|^/$| ); # Simpler find_me( $fs, $fs eq '/' ); # Simpler Still $File::Find::prune = $fs ne '/'; find_me; [download]