Skip to content

Instantly share code, notes, and snippets.

@ncaq
Last active December 25, 2019 06:39
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 ncaq/25befaf282cde69f798b9820a2f279aa to your computer and use it in GitHub Desktop.
Save ncaq/25befaf282cde69f798b9820a2f279aa to your computer and use it in GitHub Desktop.
はがきデザインキットからカメラのキタムラ向けへの変換
BEGIN {
FS = ","
OFS = ","
print "姓1,名1,敬称1,姓2,名2,敬称2,姓3,名3,敬称3,姓4,名4,敬称4,姓5,名5,敬称5,姓6,名6,敬称6,〒番号,住所1,住所2,住所3,会社名,部署,役職,御中"
}
NR > 1 {
print $1, $2, $20, "", "", "", "", "", "", "", "", "", "", "", "", "", "", "", $7, $8 $9 $10, $11, "", $12
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment