Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Last active April 8, 2016 09:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kurozumi/99d2321ee1b2209b877bbad63e618df3 to your computer and use it in GitHub Desktop.
Save kurozumi/99d2321ee1b2209b877bbad63e618df3 to your computer and use it in GitHub Desktop.
【Linuxコマンド】CSVファイルの指定列の重複を削除する方法
cat org.csv | awk -F, '!a[$2]++' > uniq.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment