ca5
4/18/2017 - 1:46 AM

json以外の行が混じる場合

json以外の行が混じる場合

# https://github.com/stedolan/jq/issues/884
# 普通にjq通すとjsonじゃない行で止まる
$ the_executable | jq '.' | wc -l
parse error: Invalid numeric literal at line 462383, column 5
462382
  
# raw inputしてjsonかどうかの判断を条件に加える
$ the_executable | jq -R 'fromjson"|.' | wc -l
1074016