更新文件: tmuxrunwebdavsim.sh, rclonemount.sh, attach.sh, install.sh, runembysim.sh 等6个文件

This commit is contained in:
ZJP Monitor
2025-07-02 19:48:26 +08:00
parent a45a368413
commit 186dee884e
6 changed files with 49 additions and 11 deletions

10
killwebdavsim.sh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/bash
killall -9 runwebdavsim.sh
pidlist=$(ps -ef|grep "/webdav_simulator"|grep -- "--port 5678"|grep -v grep|awk '{print $2}')
for pid in $pidlist
do
echo $pid
kill -9 $pid
done