diff options
author | tv <tv@also> | 2011-07-31 04:28:45 +0200 |
---|---|---|
committer | tv <tv@also> | 2011-07-31 04:28:45 +0200 |
commit | bddae8a56d3aa23bd47055e8d0bcb587daab4f6e (patch) | |
tree | a2f7b5a47dd5af93f76b08c992b8069a3c195685 /json/sh/json.sh | |
parent | e20df07553f6e3ceba0b87b5c2ab6f3b0a28ab54 (diff) |
json/sh: add support for floats
Diffstat (limited to 'json/sh/json.sh')
-rwxr-xr-x | json/sh/json.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/json/sh/json.sh b/json/sh/json.sh index 8297a853..5d6476ac 100755 --- a/json/sh/json.sh +++ b/json/sh/json.sh @@ -22,7 +22,7 @@ json_to_sh() { s/\{/begin_json_object;/g; s/\}/end_json_object;/g s/("[^"]+"):/json_set_key \1;/g s/;("[^"]+")/;json_set string \1;/g - s/;([0-9]+)/;json_set number `echo -n \1 | base64`;/g + s/;([0-9.]+)/;json_set number `echo -n \1 | base64`;/g s/;;/;/g s/;/\n/g p |