|
5/25 |
2004/3/17 [Computer/SW/Languages/Perl] UID:12735 Activity:nil |
3/17 Say I have a CGI in Perl and I want to call another script, and it happens to be another Perl script. How to invoke it without using system(...), which will actually make it slow? \_ make the other script a module and import it. \_ ``, system, or as the person above said, create a module and import it |