Skip to content

Instantly share code, notes, and snippets.

@heliac2000
Created February 23, 2017 02:35
Show Gist options
  • Save heliac2000/e8ea22756995ef9814e461b3c19fca0e to your computer and use it in GitHub Desktop.
Save heliac2000/e8ea22756995ef9814e461b3c19fca0e to your computer and use it in GitHub Desktop.
Reformat `syukujitsu.csv' by jq command
curl -s http://www8.cao.go.jp/chosei/shukujitsu/syukujitsu.csv |
nkf -w -Lu |
sed -n '/^元/,/^天/p' |
jq -s -R -r '
./"\n" | map(./",") | (
map([(.[0]),(.[1])]), map([(.[2]),(.[3])]), map([(.[4]),(.[5])])
) | map(join("\t"))[]
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment