Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sh
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-09-11 13:40:22 +0400
committerFelix Fietkau <nbd@openwrt.org>2011-09-11 13:40:22 +0400
commita1a97eb11e89c420b84a659a88a4e72c7f04367d (patch)
tree84b59196eb39fe845f182d88d0b34efef14db265 /sh
parentdee81b4f7902c5b59654f4e8fdbb153bb4f67c62 (diff)
jshn: support using characters in elements that do not conform to shell variable restrictions
Diffstat (limited to 'sh')
-rw-r--r--sh/jshn.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/sh/jshn.sh b/sh/jshn.sh
index 7389f8c..8ecefcf 100644
--- a/sh/jshn.sh
+++ b/sh/jshn.sh
@@ -19,11 +19,15 @@ json_add_generic() {
local val="$3"
local cur="${4:-$JSON_CUR}"
- [ "${cur%%[0-9]*}" = "JSON_ARRAY" ] && {
+ if [ "${cur%%[0-9]*}" = "JSON_ARRAY" ]; then
eval "local aseq=\"\${SEQ_$cur}\""
var=$(( ${aseq:-0} + 1 ))
export -- "SEQ_$cur=$var"
- }
+ else
+ local name="$(echo -n "$var" | tr -C '[a-zA-Z_]' _)"
+ [[ "$name" == "$var" ]] || export -- "NAME_${cur}_${name}=$var"
+ var="$name"
+ fi
export -- "${cur}_$var=$val"
export -- "TYPE_${cur}_$var=$type"