Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re: best way to pass data

by ehdonhon (Curate)
on Aug 21, 2003 at 19:33 UTC ( [id://285567]=note: print w/replies, xml ) Need Help??


in reply to best way to pass data

Well, if that gets converted to a '/bin/sh -c', it will probably crash if @array really does have thousands of lines in it. There is a hard limit to the number of parameters that sh will take.

Here is one solution:

open( PROG, '| /tmp/scripts.pl' ); for ( @ARRAY ) { print PROG $_; } close( PROG );

If you do it that way, then you will have to write your other script to accept the data via STDIN.

If this is too slow for you, you might want to take a look at IPC::Shareable::SharedMem for a shared memory solution.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://285567]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-24 18:35 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found