-
Notifications
You must be signed in to change notification settings - Fork 0
deptno edited this page Oct 1, 2023
·
8 revisions
arch -arm64 brew install jq
cat package.json | jq '.scripts'
cat package.json | jq '.scripts.start'
jq -n '{"json": "data"}' # formating
... | jq '.[] | .name, .version' # 멀티 라인
... | jq '.[] | [.name, .version]' # 어레이 텍스트 그대로 출력
... | jq '.[] | [.name, .version] | @tsv' # \t
... | jq '.[] | [.name, .version] | @csv' # ,
... | jq '.[] | [.name, .version] | @html'
... | jq '.[] | [.name, .version] | @text'