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.
|
#!/bin/bash
|
|
#
|
|
# 在目标板子上,这个脚本会在系统启动时自动被调用,从而实现自启动。
|
|
#
|
|
cd /app
|
|
# 如果系统需要自启动时打开browser,在此调用./browser.sh
|
|
#./browser.sh
|
|
./app.sh
|
|
./app_monitor.sh &
|