4个版本

使用旧Rust 2015

0.2.0 2016年3月2日
0.1.2 2016年2月25日
0.1.1 2016年2月25日
0.1.0 2016年2月25日

#1 in #ilc

Download history 18/week @ 2024-03-11 17/week @ 2024-03-18 11/week @ 2024-03-25 43/week @ 2024-04-01 3/week @ 2024-04-08 10/week @ 2024-04-15 9/week @ 2024-04-22 4/week @ 2024-04-29 13/week @ 2024-05-06 12/week @ 2024-05-13 17/week @ 2024-05-20 3/week @ 2024-05-27 10/week @ 2024-06-03 12/week @ 2024-06-10 12/week @ 2024-06-17 18/week @ 2024-06-24

每月52次下载
5 crate 中使用

Apache-2.0

11KB
270

ilc

Travis Appveyor Crates.io version Crates.io license

这是什么?

ilc是一个用于处理常见的IRC日志格式的库,同时也是一个包含处理IRC日志的常用工具集合。

该库可以将大部分EnergyMech(ZNC)和Weechat日志格式之间相互转换,以及它们的二进制和msgpack表示形式。这些工具可以合并、转换和美化打印这些日志,或者计算人们在这些日志中所说的行数/单词数。

下载

还有其他构建版本,包括支持musl、mingw或ARM。请查看最新版本以查看所有存档。

平台 64位 32位
Linux 下载 下载
OS X 下载 下载
Windows 下载 下载

请注意,由于发布和上传构建之间可能有一小时的间隔,这些链接可能会失效,对此表示歉意。

我如何自己编译它?

因为我使用了实验性功能(slice_patterns),您无论如何都必须使用Rust nightly安装。

从crates.io
cargo install ilc
从git

67ee599c56ba9e58cfe190036b7dcc656b20bfdd已知可以与

rustc 1.8.0-nightly (d63b8e539 2016-01-23) cargo 0.8.0-nightly (8edc460 2016-01-21)

编译

cargo build --release

示例

ilc stats -f w -i full.dated.sorted | jq ".stats.freqs[].lines" | awk '{ total += $1; count++ } END { print total/count }'

用法

Usage:
  ilc parse [options] [-i FILE...]
  ilc convert [options] [-i FILE...]
  ilc freq [options] [-i FILE...]
  ilc seen <nick> [options] [-i FILE...]
  ilc sort [options] [-i FILE...]
  ilc dedup [options] [-i FILE...]
  ilc (-h | --help | -v | --version)

Options:
  -h --help         Show this screen.
  -v --version      Show the version (duh).
  --date DATE       Override the date for this log. ISO 8601, YYYY-MM-DD.
  --tz SECONDS      UTC offset in the direction of the western hemisphere.
  --channel CH      Set a channel for the given log.
  --inf INF         Set the input format.
  --outf OUTF       Set the output format.
  --in -i IN        Give an input file, instead of stdin.
  --out -o OUT      Give an output file, instead of stdout.
  --infer-date    Try to use the filename as date for the log.

你愚蠢吗?为什么用Rust?

呃,实际上...这可能是一个次优选择。在这里,没有人关心性能。但这是我开始的地方,我不想重写它。

我发现了一个错误!

太好了!或者...嗯,不是那么好。请在这里提交

它不支持我的格式。

计划支持irssi,但除此之外,您必须提交一个问题或自己实现它。PR是受欢迎的,但我不能保证所有提交都能被合并。 :)

依赖关系

~3MB
~45K SLoC