Files
2026-06-12 17:05:35 +00:00

12 lines
149 B
Bash
Executable File

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