in reply to Re: Can I clean this up??
in thread Can I clean this up??
We thus minimise our code duplication like this (perl):
open(MAIL,"|mailx blah") || die "No mail stuff: $! \n"; if ($ct>0) { print MAIL "\n$ct ".($ct>1 ? "are not available" : "is down")." at + this time.\n"; } close(MAIL);
But of course the greatest optimisation is always achieved by considering the whole problem, not just the perl:
open(MAIL,"|mailx blah") || die "No mail stuff: $! \n"; print MAIL "\nSystems unavailable at this time: $ct\n" if ($ct>0) close(MAIL);
Silly I know, but to the point: Good optimisation looks at the whole problem.
|
|---|