In said:
Hi all,
I have used Getopt::Std and File::Find. I found standard module useful.
Is there any artical summarize the most useful standard module?
Best regards,
Davy
I'd vote for:
#1 Data:

umper
I also really like IO::File and IO::Handle I know there are many other ways to
work with file handles, but to me, the IO::* stuff seems to make more sense. If
you get in the habit of only using getline() and close(), you can easily create
your own objects that return text lines w/out having to mess with TIE. I find
this easier, but then, I tend to consider 'tie' to be a bit of a hack. Others
will disagree, which is fine.
It really is a matter of style:
I tend to think of 'strict' and 'warnings' as more programming
pragmas that happen to work with 'use'. But, since others are addressing
warnings and strict, I'll add my two bits.
Personally, I *really* like 'use strict'.
I do make use of the -w switch now and then when trying to diagnose something,
but I'm not to big on 'use warnings'. Data:

umper is my friend and to me
anyway, far more useful when figuring out problems.
Granted, working in a group setting where the other members have proclaimed
though shalt use warnings and I'm quite open and comfortable with it. (Next time
I do something, I might check to see if 'use warnings' will warn me about objects
not being cleaned up at the end. THAT would be a useful warning.)
When I'm on my own, I just don't see the value of it when creative use of
Data:

umper almost always finds problems without finding lots of non-problems.
Varies with case-to-case, standard disclaimers apply, don't jump down my throat
I do agree there are times when -w *is* useful. Saying anything to the
contrary of 'warnings' usually gets you arrested by the perlice...
Jamie