Skip to content
Advertisement

how to add ” to end of specific lines in linux

I have a file as below

JavaScript

I want to add ” at the end but only to lines ending as a string

I gave sed -i 's/$/",/' filename but it adds quotes to end of all the lines.

Desired output is

JavaScript

Is there a way to achieve this?

Advertisement

Answer

You can use

JavaScript

The 's/:"[^"]*$/&"/' command means:

  • :"[^"]*$ – matches a :" substring and then zero or more chars other than " till end of string
  • &" – replaces the match with itself and a " char.

See the online demo:

JavaScript

Output:

JavaScript
Advertisement