wuwei
2025-06-13 e8c9c0ca7e6c307243c158fd529c59c5a3717f2f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh
# 查询-所有设备列表 包括串口设备、扩展设备、网口设备
echo -en "Content-type: text/html; charset=utf-8\n\n"
#*****************************************************
source ../bin/env.sh
 
jsoner="../bin/jsoner"
 
file="/tmp/.debug_mode"
 
read data
 
mode=`$jsoner $data mode`
 
case "$mode" in
debug)
touch $file
if [ -f $file ]
then
    echo "{\"code\": \"success\"}"
else
    echo "{\"code\": \"error\"}"
fi
;;
normal)
rm $file
if [ -f $file ]
then
    echo "{\"code\": \"error\"}"                                     
else                                                                       
        echo "{\"code\": \"success\"}"                                       
fi                                                                         
;;      
esac