Error in eval eval command to print html tags


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Error in eval eval command to print html tags
# 1  
Old 03-28-2013
Error in eval eval command to print html tags

anyone has any info on why this is complaining???

Code:
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 near unexpected token `<'

any help is appreciated.. thanks
# 2  
Old 03-28-2013
It is taking <, > and so forth to be redirection instead of text. This is because you are using eval, telling it to process the text as a shell statement, not as a quoted string.

If you explained exactly what you were trying to do, we might be able to find away avoiding eval and it's many problems (only one of which you've just discovered).
# 3  
Old 03-28-2013
After the first pass through the sh parser, there are multiple unquoted redirections.

Regards,
Alister
# 4  
Old 03-28-2013
what i am trying to achieve is i want to store different strings with dynamic variables.. and use this variable and echo them to html file...
zoneCounter can have any number of values starting from 1... and variable optUsage should hold values sepecific to that zoneCounter

so my final output should me as below

Code:
<th>Zone 1 </th><th align="left"> 23%</th>


found one more issue with eval :-(

Code:
vivek@vivek-c5e55ef2e ~/TAC
$ zoneCounter=2

vivek@vivek-c5e55ef2e ~/TAC
$ temp=$( cat TACHCAutomation.OutputZ$zoneCounter | grep "CCM-JVM-CPU:" | awk -F'CCM-JVM-CPU:' '{print $2}' )

vivek@vivek-c5e55ef2e ~/TAC
$  echo $temp
Not able to fetch HQE value....May be HQE Not running

vivek@vivek-c5e55ef2e ~/TAC
$ eval eval jvmCPU$zoneCounter=$( echo $temp )
-bash: able: command not found

vivek@vivek-c5e55ef2e ~/TAC

# 5  
Old 03-28-2013
You've just repeated the method you want, not the actual goal.

To template a bunch of text in shell, I'd put them in a here-document like this:

Code:
cat <<EOF
<th>Zone $zoneCounter </th><th align="left"> $optUsage$zoneCounter </th>
EOF

Much less escaping and doublethink.
# 6  
Old 03-28-2013
To be more specific regarding the original error: echo ><.

Another suggestion regarding a template: You can use printf. The "template" is the format string. The remaining arguments populate the template. But, for immediate output, Corona688's suggestion is probably best.

Regards,
Alister
# 7  
Old 03-28-2013
i tried both EOF and printf.. it dint work..or may be i am doing it wrong..

i think i dint explain properly.. here $optUsage$zoneCount is a single variable.... when formed properly it will be either variable optUsage1, optUsage2, optUsage3 which may hold any different values... for this reason i tried with eval command



Code:
vivek@vivek-c5e55ef2e ~/TAC
$ optUsage1=2%

vivek@vivek-c5e55ef2e ~/TAC
$ cat <<EOF
<th>Zone $zoneCounter </th><th align="left"> $optUsage$zoneCounter </th>
EOF
<th>Zone 1 </th><th align="left"> 1 </th>

vivek@vivek-c5e55ef2e ~/TAC


vivek@vivek-c5e55ef2e ~/TAC
$ optUsage1=2%

vivek@vivek-c5e55ef2e ~/TAC
$ printf "<th>Zone $zoneCounter </th><th align=\"left\"> $optUsage$zoneCounter </th>"
<th>Zone 1 </th><th align="left"> 1 </th>
vivek@vivek-c5e55ef2e ~/TAC

and one more thing is Even if end of file works how to redirect/append it to some file

one of my command reads something like this, where the output html tags with strings are redirected to html file..
Code:
eval eval echo "<th>Zone $zoneCounter </th><th align=\"left\"> \$optUsage$zoneCounter </th>">>TACHCAutomationtemp2.txt

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

[BASH] eval command not expanding variables as expected.

Hi Guys, I wrote a collection of bash functions years ago and now need to use them again but I'm getting some error messages when eval tries to expand the variables names. I recollect that I used the shopt command to set one of the options but I can't quite remember the command that I... (8 Replies)
Discussion started by: ASGR
8 Replies

2. Shell Programming and Scripting

Eval command with space, quote and bracket characters

Hi, I am Pradnya Gandhe trying to use in shell script. I want to use a bit complicated command using eval command in a shell script. <path to>\wsadmin.sh -lang jython -conntype NONE -c "AdminApp.install('war file path', '] -MapWebModToVH ] -MapRolesToUsers ] ]')" Works correctly as expected... (2 Replies)
Discussion started by: Pradnya Gandhe
2 Replies

3. Shell Programming and Scripting

Usage of '-' in eval command.

Hi, I am trying to use eval command to evaluate a variable(HAPROXY_LISTENER_rabbitmq_project-test-BRHM_PORT) which consists of '-' but unfortunately the eval command is unable to interpret the value of variable and trims the variable name after '-' and produces the string output rather than the... (10 Replies)
Discussion started by: Kuldip
10 Replies

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

5. Forum Support Area for Unregistered Users & Account Problems

Error in eval man page

Hello, I believe that the following man page contains an error: <www dot unix dot com>/man-page/posix/1posix/eval/ In section "EXAMPLES", the fourth line should probably be: eval y='$'$x rather than: $fooeval y='$'$x Regards, Jérôme DUBOIS. (1 Reply)
Discussion started by: Unregistered
1 Replies

6. Shell Programming and Scripting

Help with perl eval command .....

Hi All, I read the above written code (perl code) in another perl script and evaluates this code for each line of text file,but using exit statement in code make this not to work and i could not get the desired results. However if i use return it works fine. I just need to know why it doesn't... (1 Reply)
Discussion started by: sarbjit
1 Replies

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

8. Shell Programming and Scripting

Eval command help

I have file called myfile which has the text "myserver" in it. I need to have a command to ping "myserver". How would I do that? I tried when I type at the terminal I get the output as . How do I do something like a ? thanks, Nick (5 Replies)
Discussion started by: nikhilfake
5 Replies

9. Shell Programming and Scripting

assignment to variable from eval command

Hi Gurus, I am having 2 parameters as below parm1=value1 parm2=parm1 I want to evaluate parm1 value using eval echo \$$parm2 and later i want to assign this value to other variable which i will be using in if statement like : if ]; then do this....... fi could you please suggest... (5 Replies)
Discussion started by: k_vikash
5 Replies

10. Shell Programming and Scripting

Access to database/eval command

Hi i have the following code: if(($line!=1) and (@field!='\$')){ print ( "\nTRY TO CONNECT TO DATABASE................\n"); my $dbh = DBI->connect($dsn, $user, $pass); print ("CONNECTED TO DATABASE\n"); eval ... (1 Reply)
Discussion started by: chriss_58
1 Replies
Login or Register to Ask a Question