I have text1.txt that contains
<this can be anything, any number of line - no hardcoded>
<this can be anything, any number of line - no hardcoded>
param1=<this can be any value - no hardcoded>
<this can be anything, any number of line - no hardcoded>
<this can be anything, any number of line - no hardcoded>
And I would like to replace this part this can be any value - no hardcoded with abc
What should be the right SED command? Note that due to environment restriction i don't have the flexibility to use any language such as perl, python, or ruby ~ and can only use Unix command. And no hardcoded except for param1
Thanks a lot in advance!