I trying to modify one column in csv file Csv file looks like
"Name", "Gender", "Link"
"Josh", "Male", "https://url.com/josh"
"Samanta", "Female", "https://url.com/samanta"
Main task: add Html tag to all links.
Example of how csv should look:
"Name", "Gender", "Link"
"Josh", "Male", "<a href="https://url.com/josh"/a>"
"Samanta", "Female", "<a href="https://url.com/samanta"/a>"
I do not completely understand how it works in awk or sed
Thanks in advance