On Tue, 2002-04-16 at 09:39, Tucker, Ernie wrote: > How can a have one perl script call another perl script ? > > > Ernest P. Tucker II > Network Technician > Charter Communications > Madison Management Area > (608) 373-7625 >
That depends on what you mean by call. If you want to run an external script you can use system. If you want to run an external script and want to use the output in your program use the backquotes (@output = `/usr/bin/command.pl`;). However, if you mean that you want to call a function in another script then you need to take a look at modules (perldoc perlmod). -- Today is Sweetmorn the 33rd day of Discord in the YOLD 3168 Missile Address: 33:48:3.521N 84:23:34.786W -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]