Re: A better find subroutine



mac8500 wrote:
Thanks for the help guys .. yes i do realize that i'ts not the best way
to do this and frankly thats why i'm posting in perl begginers :)

I'm absolutly clueless for modules ... i've looked at a few but didn't
grasp the logic behind them ... i need like a perl modules for dummys
... yeah that would help.

Or anything documents, books, websites you could recommend.

In general, I recommend just reading that module's documentation. For
standard modules (like File::Find that I recommended), just go to your
command prompt and type:
perldoc File::Find
For CPAN modules (like IO::All that David recommended), go to
http://search.cpan.org and search for that module. Note that you will
have to install any CPAN modules before you can use them. Frequently,
this is as simple as going to your command prompt and typing:
cpan IO::All
but be sure to read some faqs and documentation on installing modules
for special cases, such as:
perldoc perlmodinstall
perldoc -q lib

If you have any questions about the usage of various modules, (after
you have read that module's documentation) feel free to post here, or
in comp.lang.perl.modules

Paul Lalli

.



Relevant Pages

  • Re: Home Network, step by step?
    ... I would also recommend going with pf. ... documentation is fantastic, it can do a myriad of things and is ... > ipf and pf in FreeBSD - are now not so much firewalls, ... IPFW is much older and is somewhat less well maintained, ...
    (freebsd-newbies)
  • Re: Learning Code...Fast
    ... > software project that uses a nearly obsolete toolkit ... this is often an indication of poor quality. ... tools and techniques I'd recommend: ... you're going to need more than just documentation. ...
    (comp.arch.embedded)
  • Re: Questions about Coding Practices
    ... the trinary conditional operator compiles the entire statement before it actually execute them. ... Use extensive external documentation for API documentation. ... What I _would_ recommend eschewing, and perhaps this is what the book means also, are comments _within_ the method body. ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: BufferedInputStream -- does not recommend "close()"?
    ... I had expected the constructor documentation to ... future to avoid resource leaks, ... The tutorial also does not recommend close: ... Why is it not recommended in the documentation nor the tutorial? ...
    (comp.lang.java.programmer)

Loading