Files
xkm-server/center_relay_900_1/runenv/msgq/clear.sh
2025-05-20 15:31:00 +08:00

15 lines
264 B
Bash

#!/usr/bin/env bash
# 添加执行权限
chmod +x ../tools/*
# 统计BUS通道数量
Count=$(grep 'Channels type="ChannelCnf"' ./msgq_config.xml | wc -l)
# 循环停止BUS通道
for ((i=0;i<${Count};i++))
do
../tools/tbusmgr -D 1 -C ./msgq_config.xml
done