Skip to content

Instantly share code, notes, and snippets.

@comoc
Created March 9, 2017 04:16
Show Gist options
  • Select an option

  • Save comoc/d20474dc1c59bd2419fd07adb660e02a to your computer and use it in GitHub Desktop.

Select an option

Save comoc/d20474dc1c59bd2419fd07adb660e02a to your computer and use it in GitHub Desktop.
findした結果をまとめてjqコマンドで処理する ref: http://qiita.com/comocc/items/0337c942988c3031194e
find . -name "*.json" -exec sh -c "jq < {}" \;
[{"string": "abc", "number": 123}, {"string": "def", "number": 456}]
find . -name "*.json" -exec sh -c "jq '.[].string' < {}" \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment