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