Let say in a text file if I do
grep FINAL *.msg
it returns
FINAL COMPUTATIONS: Elapsed Time: 000:30:55.65; CPU Time: 000:30:26.53
FINAL COMPUTATIONS: Elapsed Time: 000:28:11.77; CPU Time: 000:27:41.36
Now if I do for loop as
for line in `grep FINAL *.msg`
the "$line"
does not consider "FINAL COMPUTATIONS: Elapsed Time: 000:30:55.65; CPU Time: 000:30:26.53"
as a single line.
How I can solve this?