Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
【Linuxコマンド】CSVファイルの3列目が1の行だけ抽出する方法
cat list.csv | awk -F, '$3 == 1 {print $0}' > done.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment