3个版本

使用旧Rust 2015

0.1.2 2018年3月5日
0.1.1 2018年2月28日
0.1.0 2018年2月13日

#9 in #uniq

MIT 许可证

5KB
82

uq

uq 是一个简单、用户友好的 sort | uniq 的替代品。

它从输出中删除重复行,不考虑顺序。与 sort | uniq 不同,uq 不排序条目。这允许 uq 在连续流上操作。

$ python -c "while 1: print('a');print('b')" | uq
a
b

依赖项

~450KB