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

Re^3: values from perl to sh script

by polettix (Vicar)
on Jul 14, 2005 at 18:31 UTC ( [id://475002]=note: print w/replies, xml ) Need Help??


in reply to Re^2: values from perl to sh script
in thread values from perl to sh script

(Some of the following notes surely apply to bash, don't know about other shells).

You can use the backtick operator or its equivalent (and prefearable, IMHO):

return1=`/path/to/script.pl arg1 arg2` return2=$(/path/to/script.pl arg1 arg2)
The latter has the added advantage of allowing nested subshell invocations.

If your return value can have newlines, I'd suggest to use double quotes:

return_newlines="$(/path/to/script.pl arg1 arg2)"
And yes, you can use read as well, but you have to be extremely careful about what you want to do. Suppose you have the following script:
#!/usr/bin/perl print $_, $/ for @ARGV;
and you want to set the variable value to the contents of the last line:
#!/bin/bash value=0 echo "value starts from $value" ./script.pl arg1 arg2 | while read line ; do value=$line echo "value is $value" done echo "after first while, value is $value" while read line ; do value=$line echo "value is $value" done <<<"$(./script.pl arg1 arg2)" echo "finally, value is $value"
you obtain:
value starts from 0 value is arg1 value is arg2 after first while, value is 0 value is arg1 value is arg2 finally, value is arg2
Note that after the first while the variable value has not been modified. This is due to the fact that the first while cycle is being executed inside a subshell.

OTOH, the second while is executed directly by the "current" shell. This may lead to problems if you pass a lot of data back, anyway.

Note that there are also other ways, but there is too little space on the side of this post to write them.

Flavio
perl -ple'$_=reverse' <<<ti.xittelop@oivalf

Don't fool yourself.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (3)
As of 2024-04-24 13:15 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found