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'`
<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 patterncount=i=echo $str1 | awk -F "." '{print($2)}'// output isexpr3 count="0" expr4="yyyy-mm-ddT23:55:00j=echo $i | awk -F " " '{print($2)}'// output iscount="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