Is there a way to do non-greedy regular expression in ed?

I'm aware of the syntaxes for this VIM and perl-compatible regex; that's not what I'm asking about. Sometimes plain vanilla ed is the most effective editing tool.

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Standard GNU ed only supports very basic regular expressions as documented in ed(1), with no "non-greedy" modifier.

You might like ex (vim -e), which enables an ed-like interface in vi and vim.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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