Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is the code

for f in tmp_20100923*.xml  
do  
 str1=`more "$f"|grep count=`  
 i=`echo $str1 | awk -F "." '{print($2)}'`  
 j=`echo $i | awk -F " " '{print($2)}'` // output is `count="0"`  
 sed 's/count=//g' $j > $k; echo $k;   
done

I tried to get value 0 from above output using sed filter but no success. Could you please advise how can i separate 0 from string count="0" ?

share|improve this question
1  
Can you give us one original line from an xml file, that contains "count=" ? – eumiro Sep 26 '10 at 10:17
Hi, the xml file has line <expr1:expr2.expr3 count="0" expr4="yyyy-mm-ddT23:55:00.041Z" expr5="0.0" expr6="0.0"/>. So, our output should be sum of integer values from count for different files in FOR loop i.e 0+2+... So, what i did for f in tmp_20100923*.xml do str1=more "$f"|grep count= // grep the line which has pattern count= i=echo $str1 | awk -F "." '{print($2)}' // output is expr3 count="0" expr4="yyyy-mm-ddT23:55:00 j=echo $i | awk -F " " '{print($2)}' // output is count="0" sed 's/count=//g' $j > $k; echo $k; // now the aim is to get 0 from above done – ABeri Sep 26 '10 at 15:03
See my edited answer. – Dennis Williamson Sep 26 '10 at 17:47

5 Answers

up vote 1 down vote accepted

You can have AWK do everything:

for f in tmp_20100923*.xml  
do  
    k=$(awk -F '.' '/count=/ {split($2,a," "); print gensub("count=","","",a[2])}')
done

Edit:

Based on your comment, you don't need to split on the decimal. You can also have AWK do the summation. So you don't need a shell loop.

awk '/count=/ { sub("count=","",$2); gsub("\042","",$2); sum += $2} END{print sum}' tmp_20100923*.xml
share|improve this answer
yah, any time you have a long sequence of grep, sed and awk, it's almost always better to just replace it with a short awk program. – Zac Thompson Sep 26 '10 at 18:17
Thanks, it is really helpful :-) – ABeri Oct 5 '10 at 2:32

Remove all non digits from $j:

echo ${j//[^0-9]/}
share|improve this answer

you are trying to sed a file whose name is $j

Instead you can

echo $j | sed 's/count=//g'
share|improve this answer
this is also true, as the third argument to sed is the file. from the man page sed [OPTION]... {script-only-if-no-other-script} [input-file]... – Dan Beam Sep 26 '10 at 10:08

You can use this sed regexp:

sed 's/count="\(.*\)"/\1/'

However your script has another problem:

j=`echo $i | awk -F " " '{print($2)}'` // output is `count="0"`  
sed 's/count=//g' $j > $k; echo $k;   

should be

j=`echo $i | awk -F " " '{print($2)}'` // output is `count="0"`  
echo $j | sed 's/count=//g'   

or better:

echo $i | awk -F " " '{print($2)}' | sed 's/count=//g'

'sed' accepts filenames as input. $j is a shell variable where you put the output of another program (awk).

Also, the ">" redirection puts things in a file. You wrote ">$k" and then "echo $k", as if >$k wrote the output of sed in the $k variable.

If you want to keep the output of sed in a $k variable write instead:

j=`echo $i | awk -F " " '{print($2)}'` // output is `count="0"`  
k=`echo $j | sed 's/count=//g'`
share|improve this answer

This should snag everything between the quotes.

sed -re 's/count="([^"]+)"/\1/g'

-r adds --regexp-extended to be able to cool stuff with regular expressions, and the expression I've given you means:

search for count=",
then store ( any character that's not a " ), then
make sure it's followed by a ", then
replace everything with the stuff in the parenthesis (\1 is the first register)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.