Anoop
Anoop

Reputation: 5720

Converting Shell Output to json

I want to convert the output of octave execution in shell to json format.

For example if I execute

$ octave --silent --eval 'a=[1,3],b=2'

I get

a =

   1   3

b =  2

I want the output to be formatted to a json string as in

"{'a':[1,3], 'b':2}"

How do I achieve this, It would be great if it is in node/js, but anthing is fine. I am looking for any existing solutions to rather than writing my own logic for parsing it. Need suggestion.

Upvotes: 0

Views: 177

Answers (1)

random
random

Reputation: 27

I doubt if any such package exists. Its easy to write your own rather thank waiting to find one.

Upvotes: 1

Related Questions