I have a string like this :
test:blabla
And with sed, I want to replace what\'s after the \':\' with something else.
I can manage t
> echo $SER2 test:blabla > echo $SER2 | sed 's/\([^:]*:\).*/\1replace/g' test:replace >