Another way would be to have the program produce a grep regular expression that 
is the concatenation of the namefile values into a string

and run a grep command in a shell, like
    
    
    grep -Ev '^(name1|name2|name3|...),' csvfile > newfile
    

but then you could do this in nimscript or bash or ... 

Reply via email to