This commit is contained in:
STEINNI
2025-09-11 20:50:34 +00:00
parent 500166b0bc
commit de69b3d4de
18 changed files with 2427 additions and 0 deletions
Executable
+11
View File
@@ -0,0 +1,11 @@
#!/bin/sh
pid=`ps -ef | grep wssGateway.js |grep -v grep | awk '{print $2}'`
if [ -n "$pid" ]
then
echo "killing pid: $pid"
kill -9 $pid
fi