mirror of
https://dev.iopsys.eu/bbf/bbfdm.git
synced 2026-02-05 05:17:43 +01:00
17 lines
328 B
Bash
Executable file
17 lines
328 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. /usr/share/libubox/jshn.sh
|
|
|
|
case "$1" in
|
|
list)
|
|
echo '{ "info" : {} }'
|
|
;;
|
|
call)
|
|
case "$2" in
|
|
info)
|
|
cat /tmp/ieee1905.info.data 2>/dev/null
|
|
;;
|
|
esac
|
|
;;
|
|
esac
|
|
|