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?
|
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? | |||
|
feedback
|
|
Use the insert command of sed to insert something before a match.
For further information, see | |||
|
feedback
|