Crates.io | uq |
lib.rs | uq |
version | 0.1.2 |
source | src |
created_at | 2018-02-13 14:51:14.414328 |
updated_at | 2018-03-05 14:05:17.459027 |
description | sort | uniq alternative. |
homepage | https://github.com/lostutils/uq |
repository | |
max_upload_size | |
id | 51002 |
size | 5,178 |
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