in reply to find2perl help
It uses File::Find. It is not meant to actually be a line in your code like:$ find2perl / -name blah -exec rm {} \; > rmblah.pl $ chmod 500 rmblah.pl $ ./rmblah.pl
I would suggest you also take a look at File::Find::Rule. Once you get the hang of it, there really isn't any need to use find2perl unless you are porting someone else's obfu'd shell script that has some weird find command in it.#!/usr/bin/perl -w use strict; find2perl $path -name $fName;
Hope this helps - L~R
|
|---|