Skip to content
Advertisement

Replacing String Columnwise Using Sed

Given this data

JavaScript

I want to replace the string at 2nd column into “” if it is “qux”. Resulting:

JavaScript

How do you do that with sed? In particular the data is very big with ~10^7 lines

Advertisement

Answer

I wouldn’t actually do it with sed since that’s not the best tool for the job. The awk tool is my tool of choice whenever somebody mentions columns.

JavaScript

or the simplest form:

JavaScript

If you must use sed:

JavaScript

making sure that you use the correct white space (the above uses only spaces).

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement