I have a csv file and I want to replace a line (remove it and add new information in its place) but I can't use sed. I don't know, my bash terminal doesn't support it. Let's say the csv file is like this:
a,b,c
d,e,f
I want to remove the line d,e,f
and add g,h,i
, for example.