Files
P42_wssGateway/stopWssGw.sh
T
2025-10-05 10:11:03 +00:00

12 lines
156 B
Bash
Executable File

#!/bin/sh
pid=`ps -ef | grep p42wssGateway.js |grep -v grep | awk '{print $2}'`
if [ -n "$pid" ]
then
echo "killing pid: $pid"
kill -9 $pid
fi