Skip to content

Instantly share code, notes, and snippets.

@kuninet
Created December 13, 2015 00:31
Show Gist options
  • Save kuninet/aef372f5f71361ab9d7f to your computer and use it in GitHub Desktop.
Save kuninet/aef372f5f71361ab9d7f to your computer and use it in GitHub Desktop.
CSVのawkサンプル
#
# CSVから特定の列だけ抜き出す
#
#
BEGIN{
FS = "," # フィールドセパレーターを","へ
}
{
print $2 "," $3
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment