"Jq select()"의 두 판 사이의 차이

(새 문서: ==개요== {{소문자}} ;jq select <syntaxhighlight lang='console'> root@wsl:~# cat a.json [1,5,3,0,7] </syntaxhighlight> <syntaxhighlight lang='console'> root@wsl:~# cat a.json | j...)
 
 
(같은 사용자의 중간 판 2개는 보이지 않습니다)
6번째 줄: 6번째 줄:
root@wsl:~# cat a.json
root@wsl:~# cat a.json
[1,5,3,0,7]
[1,5,3,0,7]
</syntaxhighlight>
<syntaxhighlight lang='console'>
root@wsl:~# cat a.json | jq '.[] | select(.>2)'
5
3
7
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang='console'>
<syntaxhighlight lang='console'>
17번째 줄: 23번째 줄:


==같이 보기==
==같이 보기==
* [[jq map()]]
* [[jq 정규식 값 매칭]]
* [[jq 정규식 값 매칭]]


[[분류: jq]]
[[분류: jq]]

2022년 10월 28일 (금) 19:55 기준 최신판

1 개요[ | ]

jq select
root@wsl:~# cat a.json
[1,5,3,0,7]
root@wsl:~# cat a.json | jq '.[] | select(.>2)'
5
3
7
root@wsl:~# cat a.json | jq 'map(select(. > 2))'
[
  5,
  3,
  7
]

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}