Removing exceptions from a list using Bash (with sed and awk)

I have a CSV file, a list of 1000+ users and user properties. I have a list of exceptions (users to be excluded from processing), one user per line, about 50 total. How can I remove the exceptions from the list? # make a copy of the original list cp list-of-1000.csv list-of-1000-less-exceptions.csv # loop through … Continue reading Removing exceptions from a list using Bash (with sed and awk)