Help on eval please


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Help on eval please
# 1  
Old 10-18-2012
Help on eval please

Hello All,

Since my variables are nested I use eval to populate the data.
I have an ambiguity here when eval is used along with &

say I have the below variable

Code:
url="www.unix.com"

, this come from function call as argument.

I want to take this into another variable say
Code:
home_url="http://$url/newthread.php?do=newthread&f=30"

All I want is, home_url should have the value https://www.unix.com/newthread.php?do=newthread&f=30

When eval echo is used, it considers f=30 as another variable.

My piece of code is as below

Code:
home_url=$(sed 's/$1/$url/' filename)
home_url=$(eval echo $home_url)


Where the filename stores, http://$1/newthread.php?do=newthread&f=30

if I do
Code:
echo $home_url

it says https://www.unix.com/newthread.php?do=newthread

PS: I am having a real hard time to explain this Smilie


Please help me to come out of this confusion.
# 2  
Old 10-18-2012
The shell puts the command line up to the "&" char into background execution, then, assigns 30 to the variable f; you would need to escapethe "&" somehow. If you use double quotes for the sed expression, it will work from the beginning:
Code:
home_url=$(sed "s/\$1/$url/" filename)

Make sure the first "$" sign is escaped.
# 3  
Old 10-18-2012
Hello RudiC,

I have even changed the $1 pattern in the file "filename" to XYZ, even then its not working.
Code:
home_url=$(sed "s/XYZ/$url/" filename)
home_url=$(eval echo $home_url)

The below is my debugging output

Code:
+ sed s/XYZ/$url/ filename
+ home_url=http://$url/newthread.php?do=newthread&f=30
+ eval echo http://$url/newthread.php?do=newthread&f=30
+ f=30
+ echo https://www.unix.com/newthread.php?do=newthread
+ home_url=https://www.unix.com/newthread.php?do=newthread

# 4  
Old 10-18-2012
You're making this much too hard on yourself. When you set a variable in the shell, parameter expansion occurs in double quoted strings and that is all you need here.
Adding the eval also causes the entire string to be executed which is causing the & to be evaluated as a command separator. All you need is:
Code:
url="www.unix.com"
home_url="http://$url/newthread.php?do=newthread&f=30"

This User Gave Thanks to Don Cragun For This Post:
# 5  
Old 10-18-2012
you are wonderful... Yes, i thought the double quotes might create an issue whilst using wget, but it didn't. Its working now.. TA
# 6  
Old 10-18-2012
@sathyaonnuix: The one single statement in my post will set home_url correctly, at least on my linux/bash. You don't need the second using eval. In fact, eval will do what I said in my previous post (and what you showed in your debug output).
@Don Cragun: The requestor wanted to read the extension from a file; that's what the sed construct was for.

Last edited by RudiC; 10-19-2012 at 04:55 AM.. Reason: typos
# 7  
Old 10-18-2012
If you find yourself using eval, odds are good you've taken a wrong turn somewhere. The first rule of using eval is, don't. Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Eval

thank you (35 Replies)
Discussion started by: ratnalein88
35 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... (13 Replies)
Discussion started by: vivek d r
13 Replies

3. 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

4. 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

5. Shell Programming and Scripting

eval

hi all, Am trying to add some code to a ksh script and i dont understand how an eval function is used : _var=$1 _conceal=$2 eval _val=\$${_var} can someone shed some light on what the eval function in the above context means/does ?? thanks. (4 Replies)
Discussion started by: cesarNZ
4 Replies

6. Shell Programming and Scripting

eval help

I am trying to expand the variable $user in my alias command and tried several variations of eval but can't seem to get it to work. The end result should be either: oracle_user='sudo su - oracle ' or oracle_user='sudo su - oracle1 ' user=$(grep '^oracle:' /etc/passwd | cut... (5 Replies)
Discussion started by: BeefStu
5 Replies

7. UNIX for Advanced & Expert Users

eval behaviour

Hi, I have snippet like the following x="1" prompt1="hi" if I say eval echo \$prompt$x then it is giving o/p "hi" if I say `eval echo \$prompt$x` here it is giving 1 ! if I add one more escape character i.e. `eval echo \\$prompt$x` then it is giving "hi" Can you please... (3 Replies)
Discussion started by: shahnazurs
3 Replies

8. Shell Programming and Scripting

eval misconception

Hi, I have two files "foo" and "bar" $ cat foo a is \$a and b is \$b $ cat bar car tree using the below 'while' loop I expect the output to be: a is car and b is tree while read a b; do eval echo $(cat foo) # o/p: a is $a and b is $b eval "echo $(eval "cat foo")"... (1 Reply)
Discussion started by: royalibrahim
1 Replies

9. Shell Programming and Scripting

EVal

Hi All, I'm running some encrypted data through a script I wrote. In order to do this, I'm using eval to resolve some of my variables. At the moment, when I use eval to resolve, it strips out some of my encrypted values, and totally drops some others. For example if I have the value ab1"3 it drops... (1 Reply)
Discussion started by: Khoomfire
1 Replies

10. Shell Programming and Scripting

eval a variable that has a .

Hi, Is there any way that I can eval the following - eval abc.csv=def.csv I am getting the - bash: command not found error. thanks. (3 Replies)
Discussion started by: ttshell
3 Replies
Login or Register to Ask a Question