I need to remove text between the delimiters \"<\" and \">\", but there are multiple instances of these on each line of my text file.
For example, I want to turn th
you can use a negated character class in your regex:
sed 's/<[^>]*>//g' filename.csv