14 lines
		
	
	
		
			181 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			181 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/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 .
 | 
						|
 |