in reply to Re: Determining the dayname for the last day of any given month
in thread Determining the dayname for the last day of any given month
Uses perl core util "date"
date isn't a "perl core util", it's an external operating system command. It's a bad idea to use external commands if they aren't necessary because a) you can never be sure what external commands will be available if you have to move your program to another platform and b) opening a new shell unnecessarily is inefficient. Perl contains everything you need to handle dates. There is no need to use external programs.
"The first rule of Perl club is you do not talk about
Perl club."
-- Chip Salzenberg
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Determining the dayname for the last day of any given month
by greenFox (Vicar) on Jun 19, 2006 at 16:00 UTC | |
Re^3: Determining the dayname for the last day of any given month
by leocharre (Priest) on Jun 19, 2006 at 18:28 UTC | |
by davorg (Chancellor) on Jun 20, 2006 at 08:31 UTC |