Files
2026-06-20 18:50:26 +00:00

9 lines
150 B
Bash
Executable File

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