mirror of
https://github.com/yanyiwu/cppjieba.git
synced 2025-07-18 00:00:12 +08:00
8 lines
154 B
Bash
Executable File
8 lines
154 B
Bash
Executable File
#!/bin/sh
|
|
cjserver -c /etc/CppJieba/server.conf -k start >> /dev/null 2>&1
|
|
if [ $? -ne 0 ]; then
|
|
echo "start failed."
|
|
exit 1
|
|
fi
|
|
echo "start ok."
|