首次提交

This commit is contained in:
2026-06-16 11:18:22 +08:00
commit 068ef188e7
201 changed files with 57503 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/bin/sh
case "$1" in
start|"")
while true
do
printf "Starting E-CAP: "
cd /root/
./Radarcape_Local_Server_aarch64-buildroot-linux-gnu-gxx_Linux_Debug > out.log 2>&1
# ./Radarcape_Local_Server_aarch64-buildroot-linux-gnu-gxx_Linux_Debug
sleep 3
done &
;;
stop|status)
printf "Stopping E-CAP: "
pkill Radarcape_Local_Server_aarch64-buildroot-linux-gnu-gxx_Linux_Debug
;;
restart|reload|force-reload)
echo "Error: argument '$1' not supported" >&2
exit 3
;;
*)
echo "Usage: [start|stop]" >&2
exit 3
;;
esac