I have more than 500 csv files with identical format - 6 columns (count,height,link,title,titles,width) and with multiple lines. I would like to keep only the "link" column (with all urls) from these >500 csv files. At the end, I would like to convert the final file in .txt with all these data links.
original sample csv file -
count,height,link,title,titles,width
1,142,https://url.jpg,,,338
..
...
....
to .txt file -
https://url.jpg
https://url.jpg
https://url.jpg
https://url.jpg
https://url.jpg
Does anyone here have a solution to do that?
Many thanks.