bbfdm/test/files/usr/libexec/rpcd/dect
2021-09-22 10:26:49 +00:00

17 lines
311 B
Bash
Executable file

#!/bin/sh
. /usr/share/libubox/jshn.sh
case "$1" in
list)
echo '{ "status" : {} }'
;;
call)
case "$2" in
status)
cat /tmp/dect.data
;;
esac
;;
esac