Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: perl child to return var to a bash parent

by shmem (Chancellor)
on May 02, 2011 at 13:17 UTC ( [id://902513]=note: print w/replies, xml ) Need Help??


in reply to perl child to return var to a bash parent

For starters:

perl script which outputs an array:

#!/usr/bin/perl # line 2 array.pl @ary = $ARGV[0] eq '-n'? (10..15) : (a..f); print "@ary\n";
perl script which outputs a hash:
#!/usr/bin/perl # line 2 script hash.pl my %hash = ( foo => 42, bar => 1e3, quux => 0, ); print "$_ $hash{$_}\n" for sort keys %hash;
bash script using them:
#!/bin/bash # script example.sh declare -a LETTERS declare -a NUMBERS NUMBERS=(`array.pl -n`) LETTERS=($(array.pl)) i=0 while [ $i -lt ${#NUMBERS[@]} ]; do echo ${NUMBERS[$i]} is ${LETTERS[$i]} i=$((i + 1)) done ./hash.pl | while read key value do echo string: $key, number: $value done
bash$ ./example.sh 10 is a 11 is b 12 is c 13 is d 14 is e 15 is f string: bar, number: 1000 string: foo, number: 42 string: quux, number: 0

Log In?
Username:
Password:

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

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

    No recent polls found