How To Avoid a Perl script calling an Another Perl Script
- by rockyurock
Hello,
i am calling a perl script client.pl from a main script to capture the output of client.pl
in @output.
is there anyway to avoid the use of these two files so i can use the output of client.pl in main.pl itself
here is my code....
main.pl
=======
my @output = readpipe("client.pl");
client.pl
=========
#! /usr/bin/perl -w
#use…