String handling is not working inside if loop


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting String handling is not working inside if loop
# 1  
Old 05-14-2009
Data String handling is not working inside if loop

Hi All,
I am comparing two strings inside an if condition if the strings are same then it should go inside the loop else it should execute code given in else part.

But there is a but inside my script

Even if the if condition is true
it is not going inside the loop also it is executing the else part.

Please advice

My code:

Code:
 
jvm=`cat /tmp/highcpu | awk -F" " '{print $3}' | sed 's/Cl/\/Cl/g' | head -1`
cd /logs/$jvm
thread1=$( cat websphere_stdout.txt | sed -n "/`cat /tmp/thrd_id | head -1`/p" | awk -F" " '{print $4}' |sed  -e 's/tid=//g' -e 's/0x//g' )
thread2=$( cat /tmp/thrd_id | head -1| sed 's/0x//g' )
echo "$thread1"
echo "$thread2"
if [ "$thread1" = "$thread2" ] ; then
  echo "Thread location is $jvm and thread id is `cat /tmp/thrd_id | head -1` >> /tmp/thread_causing_problem
  cat websphere_stdout.txt |sed -n "/`cat /tmp/thrd_id | head -1`/,/\"/p"  >> /tmp/thread_causing_problem
else
  echo "Thread location is $jvm and thread id is `cat /tmp/thrd_id | head -2 | tail -1` >> /tmp/thread_causing_problem
cat websphere_stdout.txt |sed -n "/`cat /tmp/thrd_id | head -2 | tail -1`/,/\"/p"  >> /tmp/thread_causing_problem
fi


Please advice where i am going wrong?

Thanks
# 2  
Old 05-14-2009
change the "=" to "==" . by the way, your code has a lot of processing overheads.
# 3  
Old 05-14-2009
Hey ghost,

Thanks for your quick reply.
But i tried that also

if both the strings are equla
it goes inside the loop

and prints the first line i.e echo

Then in the second line it has to cat the websphere_stdout.txt file and check for particular word and redirect the output to /tmp/thread_causing_problem
but my problem is when i am running the script it is just printing the whole line


cat websphere_stdout.txt |sed -n "/`cat /tmp/thrd_id | head -1`/,/\"/p" >> /tmp/thread_causing_problem


as it is ....why is it not executing this line after executing echo line??
# 4  
Old 05-14-2009
haha,

you are just missing the ending "
echo "Thread location is $jvm and thread id is `cat /tmp/thrd_id | head -1` " >> /tmp/thread_causing_problem
# 5  
Old 05-14-2009
ooops,
That was very stupid of me...

Thanks plyl for letting me know.. ;-))
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl : How is file handling working here??

Hi, I have a perl script which is just reading from the file but what I would like to understand is how the counter is moving without using the loop in the script. Below are the details: $ more /tmp/abc.txt This is 0 This is 1 This is 2 This is 3 This is 4 This is 5 This is 6 This... (2 Replies)
Discussion started by: siddharthjindal
2 Replies

2. Shell Programming and Scripting

If loop inside function not working.

check_deplver () { dir=/abc/def/ghi if ssh -o StrictHostKeychecking=no $1 "" 2> /dev/null then echo " output is " ssh -o StrictHostKeychecking=no $1 "ls -lrt $dir | grep -i abc" 2> /dev/null else echo " directory not presnt" fi } This is not working. But... (7 Replies)
Discussion started by: NarayanaPrakash
7 Replies

3. Shell Programming and Scripting

set -options not working inside for loop?

I'm a beginner in shell scripting (I'm using ksh). I'm manipulating some files and I'm using set -A to transform each read line into a numeric array. However, inside the 'for' loop the options of set (ie '-A') are not recognized (the vi editor doesn't highlight it and it doesn't work). Where... (4 Replies)
Discussion started by: kasumlolla
4 Replies

4. Shell Programming and Scripting

string comparison not working inside while loop

The string comparison highlighted below is not working fine. Please help: while read line do # Get File name by deleting everything that preceedes and follows Filename as printed in cvs status' output f_name=`echo $line | sed -e 's/^File://' -e 's/ *Status:.*//' | awk '{print $NF}'` ... (4 Replies)
Discussion started by: sudvishw
4 Replies

5. Shell Programming and Scripting

String comparison not working inside while loop

Hi, In the code included below, the string comparision is not working fine. Please help while (( find_out >= i )) do file=`head -$i f.out|tail -1` dir=`dirname $file` cd $dir Status="" if ; then Status=`cvs -Q status... (3 Replies)
Discussion started by: sudvishw
3 Replies

6. Shell Programming and Scripting

BASH loop inside a loop question

Hi all Sorry for the basic question, but i am writing a shell script to get around a slightly flaky binary that ships with one of our servers. This particular utility randomly generates the correct information and could work first time or may work on the 12th or 100th attempt etc !.... (4 Replies)
Discussion started by: rethink
4 Replies

7. Shell Programming and Scripting

String concatenation not working in a loop

Hi, First post, so I hope someone can help me with this weirdness :) I have a number files with some rows of information I want to extract, at the same time I want to add to a string some details from the file. I have found two different ways of looping over rows in a file, but one method... (5 Replies)
Discussion started by: LostInTheWoods
5 Replies

8. Shell Programming and Scripting

Null Handling in Until loop. . .loop won't stop

Hi Im running this script, which is supposed to find the max value build some tables and then stop running once all the tables are built. Thing is , it keeps assigning a null value to $h and then $g is null so it keep building tables i.e. testupdateNUL. How can I stop this? Here is what I have: ... (4 Replies)
Discussion started by: brandono66
4 Replies

9. Shell Programming and Scripting

Using variables created sequentially in a loop while still inside of the loop [bash]

I'm trying to understand if it's possible to create a set of variables that are numbered based on another variable (using eval) in a loop, and then call on it before the loop ends. As an example I've written a script called question (The fist command is to show what is the contents of the... (2 Replies)
Discussion started by: DeCoTwc
2 Replies

10. Shell Programming and Scripting

looping a array inside inside ssh is not working, pls help

set -A arr a1 a2 a3 a4 # START ssh -xq $Server1 -l $Username /usr/bin/ksh <<-EOS integer j=0 for loop in ${arr} do printf "array - ${arr}\n" (( j = j + 1 )) j=`expr j+1` done EOS # END ========= this is not giving me correct output. I... (5 Replies)
Discussion started by: reldb
5 Replies
Login or Register to Ask a Question