Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There was a related post regarding this issue.

My code in Perl script to call the shell script with functions ..

`. shellScript.sh $var1 $var2 $var3 $var4; shellFunc1 $var5 $var6`

But the problem I am facing is there is an dynamic variable resides in shellScript.sh

Here is a high level coding of shellScript.sh

happy=${var1}hello
holiday=${var2}bye

function shellFunc1 {

         cap1=$1
         cap2=$2

if [[ "$cap1" == "happy" ]] || [[ "$cap2" == "holiday" ]]
then
    echo ${!happy}
    echo ${!holiday}
fi

Error

sh: ${!happy}: 0403-011 The specified substitution is not valid for this command.
sh: "${!holiday}": 0403-011 The specified substitution is not valid for this command.

This is not the real code. Just an example. It was working fine when I am calling this from another shell script. But not working when calling from a Perl script.The dynamic varible creating problem. I would like to know is it possible or do I have to change my code completely.(Before changing the code I wanted to confirm from the Perl Gurus)

If possible can anybody please help me on the same.

share|improve this question
What is your problem, exactly? – TLP Jun 4 '12 at 13:23
Why this is closed? – avirup Jun 4 '12 at 13:27
When I am trying to access to shell function I am getting the error mentioned in my post. – avirup Jun 4 '12 at 13:28
This is a perfectly valid question, and should be re=opened. The problem may be that perl's backtick operator uses csh, and your shell script is lacking a proper shebang line to change interpreter. – William Pursell Jun 4 '12 at 13:30
1  
I will re-open this question provided that @avirup can provide a sscce that is runnable and demonstrates the problem in hand. – Kev Jun 4 '12 at 14:02
show 1 more comment

closed as not a real question by Quentin, flesk, daxim, DVK, Graviton Jun 4 '12 at 13:24

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.