3 个不稳定版本

使用旧的 Rust 2015

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

#ilc 中排名第 4


2 个 crate 使用

Apache-2.0 许可

23KB
486 行(不包括注释)

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 夜间安装。

从 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 欢迎提交,但我不能保证修订后合并所有 PR。 :)

依赖项

~3MB
~45K SLoC