Hi all....
Hopefully someone can help me here..
I am in the following situation
I need to break up a long sentence to smaller chunk ( eg as a word or string
closed by " ")
eg I have the follwoing sentence in a file call "in.dat"
## In the Microeconomic we study the overall or "aggregate performance" of
an "economy structure" ##
and I want to break it down to
In
the
Microeconomic
we
study
the
overall
or
"aggregate performance"
of
an
"economy structure"
the problem I am having is that I am not able to keep the string that is
enclosed by the quote(")s as
a whole word..
for example , the output of shell script that I wrote to do the task..
In
the
Microeconomic
we
study
the
overall
or
"aggregate
performance"
of
an
"economy
structure"
in my script , I am unable to preserve "aggregate performance" and "economy
structure"
from being chopped..
can someone help ?
thanks in advance
Chris