You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
267 B
9 lines
267 B
#!/bin/bash
|
|
cd /app
|
|
#
|
|
# 有关device_info.env文件的说明,
|
|
# 参考嵌入式Linux简单应用文件系统规范,R3条款:https://iflytop1.feishu.cn/wiki/wikcntxPLoxzkKYopdGVvvUKWbc
|
|
#
|
|
source /etc/device_info.env
|
|
killall app.out
|
|
./app.out -device_id ${DEVICE_ID} &
|