I'm using sed to modify a codebase. I'm trying to add an [assembly: .. ] reference and for readability's sake I'd like it to appear as the first [assembly: ] reference.

How might I do this in sed?

link|improve this question
feedback

1 Answer

Use the insert command of sed to insert something before a match.

% sed "/yourmatch/i'[assembly:..]'" <<< $'hello\nworld\nyourmatch\matches'
hello
world
'[assembly:..]'
yourmatchmatches

For further information, see man sed.

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.