: I don't know how the perl script looks like. I can tell it's being ran by : tomcat because when I do : "top" the owner of the process says tomcat and : the CPU is at 100%. ... : Do you have any idea of how to see which PERL script is being executed or : what it's content is?
look at the PID column in top, assuming it's something like "1234" then in another shell run this command... ps -wwwf -p 1234 ...and that should tell you the detals of the process including the path to the perl script. (the args you need for ps may be different if you aren't running linux) -Hoss