kvs tools
parent
657a1b38e3
commit
d072d29fba
@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
source $(dirname $0)/shelly.conf
|
||||
|
||||
if [ $# -ne 1 ]; then
|
||||
echo "usage: $0 <key> <value>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
key=$1
|
||||
|
||||
curl -s $SHELLY_RPC/KVS.Delete'?key="'$key'"' | jq .
|
||||
|
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
source $(dirname $0)/shelly.conf
|
||||
|
||||
curl -s $SHELLY_RPC/KVS.GetMany'?key="*"' | jq .
|
||||
|
Loading…
Reference in New Issue