in reply to An alternative to File::Find
Man... if you're gonna suggest something like this, at least make your find command:
and then in your perl, set"find . -type d -print0 |"
This is exactly the sort of thing that gives perl a bad rep... it's basically no harder to use print0 and $/="\0", yet you don't do it. It's like people not checking the return value of malloc, for cryin out loud!local $/ = "\0";
------------ :Wq Not an editor command: Wq
In Section
Snippets Section