Berkeley CSUA MOTD:Entry 12735
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/05/25 [General] UID:1000 Activity:popular
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