6 lines
59 B
Bash
Executable file
6 lines
59 B
Bash
Executable file
#!/bin/bash
|
|
|
|
PID=`cat cstatsd.pid`
|
|
pkill -P $PID
|
|
kill $PID
|