When working with plain text files like csv's you can use the following sentence to remove duplicates. It is a combination of sed and awk commands
sed -E 's/([-]{1})([0-9]+)([-]{1})/-WER-/g' file.csv | awk -F- '!seen[$1]++' > outputfile.csv
Sun Certified Java Programmer
When working with plain text files like csv's you can use the following sentence to remove duplicates. It is a combination of sed and awk commands
sed -E 's/([-]{1})([0-9]+)([-]{1})/-WER-/g' file.csv | awk -F- '!seen[$1]++' > outputfile.csv
Comments