On 4/18/07, Robert W. Kuhn <2006@ku.hn> wrote:
Is there any program (or script) that respects the quotation marks?
Vim does. I don't know an easy way to pipe through vim, but here's a difficult way:
vim -c 'set tw='$TM_COLUMNS - >/dev/null 2<<<'gqG:%!cat >'>(cat >&2)
Pipe the text through that, and it does what you want, I think.
Robin