Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: passing bits of an array to an executable a piece at a time

by BrowserUk (Patriarch)
on Aug 08, 2003 at 12:10 UTC ( [id://282162]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    launch_background( 
        'glim.exe', 
        'glim', 
        join' ', splice( @$ids, 0, 200 );
    ) while @$ids;
    
  2. or download this
    launch_background( 
        'glim.exe', 
        'glim', 
        join' ', @{ $ids }[ $_ .. ( $_ + 200 ) ]
    ) for map $_ * 200, 0 .. int( @$ids / 200 );
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-19 14:50 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found