Linux根据某列字段去重

-t : 指定分隔符

-k: 指定从第几列开始去重 

sort -t $',' -k3,3 -u file1.txt >> file_new.txt

 

你可能感兴趣的:(Linux)