This commit is contained in:
zj
2026-03-22 17:17:44 +08:00
commit b64c39ecbd
29 changed files with 2720 additions and 0 deletions

12
start.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Auto-generated start script
# 启动所有监听服务
echo '启动 设备73-TCP (dev1) - TCP...'
su root -c "/usr/bin/python3 /home/smart/pythonPJ/upc_resent/bin/dev1.py &"
echo '启动 设备125-TCP (dev2) - TCP...'
su root -c "/usr/bin/python3 /home/smart/pythonPJ/upc_resent/bin/dev2.py &"
echo '启动 设备UDP示例 (dev3) - UDP...'
su root -c "/usr/bin/python3 /home/smart/pythonPJ/upc_resent/bin/dev3.py &"
echo "所有服务已启动"