"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...)
 
잔글 (Jmnote님이 Jq select 문서를 Jq select() 문서로 이동했습니다)
(차이 없음)

2022년 10월 28일 (금) 19:51 판

1 개요

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

2 같이 보기

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