I have a 3000+ row .csv file that I created by pulling multiple .csv sources together - example of the content is below.
NEC; 35; -1; 10
RC5; 0; -1; 12
Panasonic; 176; 0; 61
RC5; 21; -1; 1
RC5; 21; -1; 1
NEC; 0; -1; 0
RECS80; 4; -1; 30
NEC; 1; 249; 3
Denon; 1; -1; 40
NEC; 132; 60; 33
Please could someone let me know how I can create a new .csv file from the above that only has unique rows ?
If possible please could someone go on to explain how I could do this for both my existing .csv file and also at the an Lua array/table creation phase - many thanks !..
FYI - my new Lua code uses a loop and the following to populate the .csv
local info = table.concat ({protocol, D, S, F}, '; ')