Code Monkey home page Code Monkey logo

Comments (8)

jpmens avatar jpmens commented on August 16, 2024 2

I invented jo, but @gromgit remains the person who knows it best. Thank you, Adrian.

from jo.

jpmens avatar jpmens commented on August 16, 2024 1

You are not showing us exactly what you get (e.g the diagnosting warning):

$ jo foo='\{"bla":"blub"\}' -p
Argument `-p' is neither k=v nor k@v
{"foo":"{\"bla\":\"blub\"\\}"}

This is probably not a bug but simply an esacaping thing. I think you'll find this solves your task:

$ jo bla=blub > /tmp/f
$ jo  foo=@/tmp/f | jq .
{
  "foo": "{\"bla\":\"blub\"}"
}

from jo.

TimDeve avatar TimDeve commented on August 16, 2024 1

Sorry for the comment on a closed issue but I thought it might be helpful to people finding this issue.
A more streamline way is to use the shell "process substituion" or <():

jo foo=@<(jo bla=blu)

from jo.

gromgit avatar gromgit commented on August 16, 2024
jo foo='\{"bla":"blub"\}'

jo can just as easily do that for you in a sane way, with nested invocations and (very VERY important) proper quoting of each value:

$ jo -p foo="$(jo bla=blub)"
{
   "foo": {
      "bla": "blub"
   }
}

$ jo -p foo="$(jo bar="$(jo baz="$(jo -a 42 78 hike)")" flurb=tens)"
{
   "foo": {
      "bar": {
         "baz": [
            42,
            78,
            "hike"
         ]
      },
      "flurb": "tens"
   }
}

from jo.

jpmens avatar jpmens commented on August 16, 2024

@gromgit quite right, but I'm understanding OP doesn't want the nested object but rather that foo contains the string {"bla":"blub"}.

from jo.

hikhvar avatar hikhvar commented on August 16, 2024

You are not showing us exactly what you get (e.g the diagnosting warning):

That is not true, maybe my build (binary package from Archlinux) is broken, but I don't get any diagnostics warning here.

jo

@gromgit as @jpmens said, I want to have the string instead of the nested object.

@jpmens I don't understand why this odd escaping behaviour isn't a bug? I double checked it with both zsh and bash, both of the time the escaping seems to get broken within jo.

from jo.

gromgit avatar gromgit commented on August 16, 2024

Sorry, I misunderstood. Still, assuming you want {"bla": "blub"} to be treated as a string, jo has allowed string coercions for a long time now:

$ jo -p -- -s foo='{"bla": "blub"}'
{
   "foo": "{\"bla\": \"blub\"}"
}

 jo -p -- -s foo="$(jo bla=blub)"
{
   "foo": "{\"bla\":\"blub\"}"
}

Note that the first example actually preserved the space after the colon, proving conclusively that the value was indeed treated as a string instead of being interpreted by jo.

from jo.

hikhvar avatar hikhvar commented on August 16, 2024

ok, sorry, I tried with jo -s foo='{"bla": "blub"}' first, but only got the message

jo: invalid option -- 's'
[...help...]

Should have read the manual more in depth.

from jo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.