#word-count #word #counter #cli

bin+lib word_counter

显示文件单词计数的程序

3 个版本 (破坏性更新)

0.3.0 2021年9月2日
0.2.0 2021年8月22日
0.1.0 2021年8月21日

#17 in #word-count

MIT 许可证

9KB
157 代码行

Word Counter

显示文件单词计数的程序。

安装

包管理器

Linux

# Cargo
cargo install word_counter

MacOs

# Homebrew
brew tap tasnimAlam/word-counter
brew install tasnimAlam/word-counter/word_counter

示例

用法

$ ./word_counter poem.txt --top 4 --search lover --max --duration
+---------------+-------+---+
| Search result | lover | 3 |
+---------------+-------+---+
+---------------+-----+---+
| Maximum count | the | 4 |
+---------------+-----+---+
+-------+-------+
| Word  | Count |
+-------+-------+
| the   | 4     |
+-------+-------+
| and   | 3     |
+-------+-------+
| God   | 3     |
+-------+-------+
| lover | 3     |
+-------+-------+
Duration : 2ms 

选项

$ ./word_counter --help
A program that displays word count of a file.

USAGE:
    word_counter [FLAGS] [OPTIONS] <input>

FLAGS:
    -d, --duration    Duration of all the calculations
    -h, --help        Prints help information
    -r, --reverse     Reverse order
    -m, --max         Show most counted word
    -V, --version     Prints version information

OPTIONS:
    -o, --output <output>    Output file
    -s, --search <search>    Search specific word
    -t, --top <top>          Top result limit [default: 10]

ARGS:
    <input>    Input file

依赖

~5.5MB
~82K SLoC