in reply to Re: Identifing all filenames over 250 letters long
in thread Identifing all filenames over 250 letters long

I of course like this one liner! In this case however, I think just print is better
dir /s /b c: | perl -nE"length($_) > 10 && print"
as the dir command already puts in new lines so the extra one by "say" (Note to OP: "say" is the 5.10 feature) could be distracting.