mirror of
https://github.com/yanyiwu/cppjieba.git
synced 2025-07-18 00:00:12 +08:00
6 lines
181 B
Bash
Executable File
6 lines
181 B
Bash
Executable File
if [ $# -lt 1 ]; then
|
|
echo "usage: $0 <file>"
|
|
exit 1
|
|
fi
|
|
cjsegment --dictpath /usr/share/CppJieba/dict/jieba.dict.utf8 --modelpath /usr/share/CppJieba/dict/hmm_model.utf8 $1
|