mirror of
https://github.com/yanyiwu/cppjieba.git
synced 2025-07-18 00:00:12 +08:00
12 lines
158 B
Bash
Executable File
12 lines
158 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PID=`pidof cjserver`
|
|
if [ ! -z "${PID}" ]
|
|
then
|
|
kill ${PID}
|
|
sleep 1
|
|
echo "service stop ok."
|
|
else
|
|
echo "cjserver is not running."
|
|
fi
|