I have in 3rd line of a file. I want to replace that with my_dB. How to do this with sed
my_dB
sed
To replace all instances of with my_dB in your file, run:
sed 's||my_dB|g' file