Ron Rademaker wrote: > I've written a cgi script in perl an I would like to know how long > (exactly, 10th of second) it takes to execute the script, how can I do > this? > > Ron > > -- > Unsubscribe? mail -s unsubscribe [EMAIL PROTECTED] < /dev/null
addendum: you can run CGI scripts in offline mode and feed them their form variables through standard intput or command line args. so do something like $bash>time foo.cgi key=value&key1=value.... and that will spit back some execution times. Do that alot for an average. Justin

