eval in shell scripting


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting eval in shell scripting
# 8  
Old 05-22-2008
You should probably start a new thread for an unrelated question anyway.
# 9  
Old 06-25-2009
How to save eval output

/bin/sh$ var=foo
/bin/sh$ foo=bar
/bin/sh$ eval echo \${$var}
bar
/bin/sh$ val=`eval echo \${$var}`
bad substitution

How can I save the output of eval echo \${$var} to a variable?

Thanks.
# 10  
Old 06-25-2009
Quote:
Originally Posted by wumpus
/bin/sh$ var=foo
/bin/sh$ foo=bar
/bin/sh$ eval echo \${$var}
bar
/bin/sh$ val=`eval echo \${$var}`
bad substitution

How can I save the output of eval echo \${$var} to a variable?

Thanks.

Maybe something like this:


Code:
$ var=foo

$ foo=bar

$ set -x

$ cmd='eval echo \${$var}'
+ cmd='eval echo \${$var}'

$ val=$(eval $cmd)
++ eval eval echo '\${$var}'
+++ eval echo '${foo}'
++++ echo bar
+ val=bar

$ echo $val
+ echo bar
bar

# 11  
Old 06-25-2009
Quote:
Originally Posted by rubin
Maybe something like this:


Code:
$ var=foo

$ foo=bar

$ set -x

$ cmd='eval echo \${$var}'
+ cmd='eval echo \${$var}'

$ val=$(eval $cmd)
++ eval eval echo '\${$var}'
+++ eval echo '${foo}'
++++ echo bar
+ val=bar

$ echo $val
+ echo bar
bar

That works for Korn shell, but I was looking for a Bourne shell solution.

---------- Post updated at 01:24 PM ---------- Previous update was at 01:11 PM ----------

/bin/sh$ var=foo
/bin/sh$ foo=bar
/bin/sh$ val=`eval echo \\$\${var}`
/bin/sh$ echo ${val}
bar

Thank you Ken!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Error in eval eval command to print html tags

anyone has any info on why this is complaining??? vivek@vivek-c5e55ef2e ~/TAC $ zoneCounter=1 vivek@vivek-c5e55ef2e ~/TAC $ optUsage1=23% vivek@vivek-c5e55ef2e ~/TAC $ eval eval echo "<th>Zone $zoneCounter </th><th align=\"left\"> \$optUsage$zoneCounter </th>" -bash: syntax error... (13 Replies)
Discussion started by: vivek d r
13 Replies

2. Shell Programming and Scripting

Error in eval eval command to print html tags

anyone has any info on why this is complaining??? vivek@vivek-c5e55ef2e ~/TAC $ zoneCounter=1 vivek@vivek-c5e55ef2e ~/TAC $ optUsage1=23% vivek@vivek-c5e55ef2e ~/TAC $ eval eval echo "<th>Zone $zoneCounter </th><th align=\"left\"> \$optUsage$zoneCounter </th>" -bash: syntax error... (1 Reply)
Discussion started by: vivek d r
1 Replies

3. Shell Programming and Scripting

Strange result of eval, how does eval really work with ssh?

Hi all, some small script with eval turned me to crazy. my OS is linux Linux s10-1310 2.6.16.53-0.8.PTF.434477.3.TDC.0-smp #1 SMP Fri Aug 31 06:07:27 PDT 2007 x86_64 x86_64 x86_64 GNU/Linux below script works well #!/bin/bash eval ssh remotehost date eval ssh remotehost ls below... (1 Reply)
Discussion started by: summer_cherry
1 Replies

4. What is on Your Mind?

Shell Scripting vs Perl scripting

Gents, I have been working in a Solaris/Unix environment for about 9 months. I took some linux classses online before getting the job. But, I am not very good at scripting. I want to learn how to script. Do you think that I should start with Shell scripting or Perl? I wanted to continue with... (2 Replies)
Discussion started by: Pouchie1
2 Replies

5. UNIX for Advanced & Expert Users

Variable assignments specified with eval shell built-in

According to the POSIX specifications eval is a special shell built-in, which should imply that variable assignments specified together with it should remain in effect after the built-in completes. Thus one would expect IFS to be changed after this: var=$'a\nb c' $ IFS=$'\n' eval ' for i in... (4 Replies)
Discussion started by: Scrutinizer
4 Replies

6. Shell Programming and Scripting

eval in shell scripting

I am stuck on something that should really be simple, and was looking for some help.. I am new to shell scripting.Need help on this..... The script is to find the stale nfs. cat file - - - - /abcd/1234 I am writing the script to check the nfs errors of above file ... (3 Replies)
Discussion started by: nareshkumar522
3 Replies

7. Shell Programming and Scripting

Call Shell scripting from Perl Scripting.

Hi How to call a shell scripting through a Perl scripting? Actually I need some value from Shell scripting and passes in the Perl scripting. So how can i do this? (2 Replies)
Discussion started by: anupdas
2 Replies

8. Shell Programming and Scripting

shell - word splitting - using eval

In POSIX shell, we don't have arrays, but we can iterate over a list like this: #!/bin/sh list="Fred Barney Wilma Betty" for i in $list; do echo $i; done Fred Barney Wilma Betty But let's say we want "Mr. Slate" in the list. We know we can't just stick him in there like this:... (5 Replies)
Discussion started by: mjd_tech
5 Replies

9. Shell Programming and Scripting

bash shell: 'exec', 'eval', 'source' - looking for help to understand

Hi, experts. Whould anybody clear explay me difference and usage of these 3 commands (particulary in bash) : exec eval source I've tryed to read the manual pages but did not get much. Also could not get something useful from Google search - just so much and so not exactly, that is... (3 Replies)
Discussion started by: alex_5161
3 Replies

10. Shell Programming and Scripting

difference between AIX shell scripting and Unix shell scripting.

please give the difference between AIX shell scripting and Unix shell scripting. (2 Replies)
Discussion started by: haroonec
2 Replies
Login or Register to Ask a Question