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
  •  | 
  •  

Domanda

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?

È stato utile?

Soluzione

Using sed:

s='aaaa ---- bbbb'
echo "$s"|sed 's/--* bb*/foo/'
aaaa foo
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top