3 releases
Uses old Rust 2015
0.1.2 | Mar 5, 2018 |
---|---|
0.1.1 | Feb 28, 2018 |
0.1.0 | Feb 13, 2018 |
#9 in #uniq
5KB
82 lines
uq
uq
is a simple, user-friendly alternative to sort | uniq
.
It removes duplicate lines from the output, regardless of the order.
Unlike sort | uniq
, uq
does not sort entries. This allows uq
to operate on continuous streams as well.
$ python -c "while 1: print('a');print('b')" | uq
a
b
Dependencies
~450KB