mirror of
https://github.com/yanyiwu/cppjieba.git
synced 2025-07-18 00:00:12 +08:00
11 lines
175 B
Bash
Executable File
11 lines
175 B
Bash
Executable File
#!/bin/sh
|
|
|
|
PID=`pidof cjserver`
|
|
if [ ! -z "${PID}" ]
|
|
then
|
|
echo "please stop cjserver first."
|
|
else
|
|
cjserver /etc/CppJieba/server.conf &
|
|
echo "service startted."
|
|
fi
|