• AMoistGrandpa@lemmy.ca
          link
          fedilink
          arrow-up
          1
          ·
          edit-2
          30 minutes ago

          If you feel like learning a third shell, I find that Nushell is even easier to use than PowerShell.

          open stuff.json | each { get fieldName } | where { str starts-with "asdf" } | each { $in | str upcase }

          This gets all the objects in the given json file, then grabs the value of the field named “fieldName”, then filters all those values to find the ones that start with and, converts those to uppercase, and prints them to the screen as a nicely formatted list