1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-08 18:02:01 +03:00
openwrt-xburst/package/jshn/example.txt
nbd 3b96f8e26b add jshn (JSON SHell Notation), a small utility and shell library for parsing and generating json data
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25547 3c298f89-4303-0410-b956-a3cf2f4a3e73
2011-02-16 00:24:52 +00:00

20 lines
412 B
Plaintext

. /lib/functions/jshn.sh
# generating json data
json_init
json_add_string "msg" "Hello, world!"
json_add_object "test"
json_add_int "testdata" "1"
json_close_object
MSG=`json_dump`
# MSG now contains: { "msg": "Hello, world!", "test": { "testdata": 1 } }
# parsing json data
json_load "$MSG"
json_select test
json_get_var var1 testdata
json_select ..
json_get_var var2 msg
echo "msg: $var2 - testdata: $var1"