🖥

#jq コマンドで #JSON 配列の shift & push 的なことをやる ( 配列の最初の要素を最後に入れ替える例 )

2019/04/10に公開
  • .[0:1] is first element of array
  • .[1:] is other elements of array exclude first element
  • we can concatenate arrays with plus operator +
$ echo '[1,2,3,4,5]' | jq ".[1:] + .[0:1]"
[
  2,
  3,
  4,
  5,
  1
]

Original by Github issue

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

チャットメンバー募集

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

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

Twitter

https://twitter.com/YumaInaura

公開日時

2019-04-10

Discussion