| |||||||||||
| |||||||||||
input from another program Posted by revtopo (revtopo), 23 October 2007 Hi there,I have to use the output from the other program as an input to my program. There are two arrays like @array1, @array2 in the first program. Now I have to use these to arrays in my second program like @data = (\@array1, \@array2); How could i get this? thanks Posted by KevinAD (KevinAD), 23 October 2007 use the qx// operator to get output from another program. my @data = qx/otherprogram/; if "otherprogram" returns a list of arrays then all should be fine. qx// is the same as backtiks `` but is easier to read, especially on forums when posting sample code. Or you can look into using "use" or "require" to import those arrays into the main program. This page is a thread posted to the opentalk forum
at www.opentalk.org.uk and
archived here for reference. To jump to the archive index please
follow this link.
|
| ||||||||||
PH: 01144 1225 708225 • FAX: 01144 1225 793803 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho |