Possibly linux@lemmy.zip to linuxmemes@lemmy.worldEnglish · 9 months agoAnsible casually administering hundreds or thousands of deviceslemmy.zipimagemessage-square53fedilinkarrow-up1219arrow-down19
arrow-up1210arrow-down1imageAnsible casually administering hundreds or thousands of deviceslemmy.zipPossibly linux@lemmy.zip to linuxmemes@lemmy.worldEnglish · 9 months agomessage-square53fedilink
minus-squareMeanEYE@lemmy.worldlinkfedilinkarrow-up1·9 months agoI did not know that. That’s a useful one. Does it work the other way around?
minus-squarertxn@lemmy.worldMlinkfedilinkEnglisharrow-up2·9 months agoYes, both yq and jq are fantastic programs. yq can take either JSON or Yaml (or maybe others, I haven’t checked) as input, then it converts it to JSON before passing it to jq. yq outputs JSON by default, or Yaml if you pass it the --yaml-output option.
I did not know that. That’s a useful one. Does it work the other way around?
Yes, both
yq
andjq
are fantastic programs.yq
can take either JSON or Yaml (or maybe others, I haven’t checked) as input, then it converts it to JSON before passing it tojq
.yq
outputs JSON by default, or Yaml if you pass it the--yaml-output
option.