How to replace a sentence with space on the basis of a pattern if it occurs in the middle of a sentence

StackOverflow https://stackoverflow.com/questions/22602632

  •  19-06-2023
  •  | 
  •  

質問

Suppose I have a line like this:

aaaa ---- bbbb

I want to erase the ----bbbb part, but I want to keep the aaaa part as it is in the file. How can I do it?

役に立ちましたか?

解決

Using sed:

s='aaaa ---- bbbb'
echo "$s"|sed 's/--* bb*/foo/'
aaaa foo
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top