Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. {
  2. "0": {
  3. "filed1": "xxxx",
  4. "field": "zzzz"
  5.  
  6. },
  7. "1": {
  8. "field1": "xxx",
  9. "filed2": "zzz"
  10. }
  11. }
  12.  
  13. {
  14. {
  15. "id": 0,
  16. "filed1": "xxxx",
  17. "field": "zzzz"
  18. },
  19. {
  20. "id": 2,
  21. "field1": "xxx",
  22. "filed2": "zzz"
  23. }
  24. }
  25.  
  26. jq 'to_entries | map({id: .key} * .value)' file.json
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement