🖥

#jq コマンドと #shell の組み合わせで、 JSON 配列が空かどうかを条件判定する例

2019/04/09に公開

when Json array is empty

$ if [ $(echo '[]' | jq '. | length') -eq 0 ]; then echo empty; else echo non empty; fi
empty

when Json array is not empty

$ if [ $(echo '[1]' | jq '. | length') -eq 0 ]; then echo empty; else echo non empty; fi
non empty

Original by Github issue

https://github.com/YumaInaura/YumaInaura/issues/1147

チャットメンバー募集

何か質問、悩み事、相談などあればLINEオープンチャットもご利用ください。

https://line.me/ti/g2/eEPltQ6Tzh3pYAZV8JXKZqc7PJ6L0rpm573dcQ

Twitter

https://twitter.com/YumaInaura

公開日時

2019-04-09

Discussion