https://github.com/v2e4lisp/cul
sort | uniq | wc -l
https://github.com/v2e4lisp/cul
Last synced: 10 months ago
JSON representation
sort | uniq | wc -l
- Host: GitHub
- URL: https://github.com/v2e4lisp/cul
- Owner: v2e4lisp
- Created: 2015-12-01T04:15:09.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-05T05:40:02.000Z (over 10 years ago)
- Last Synced: 2025-08-16T17:02:46.947Z (10 months ago)
- Language: Go
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
cul
=======
cul - count uniq lines.
A faster version of `sort | uniq | wc -l`
Usage
----------
```bash
# single file
cul /tmp/file1
# multiple files
cul /tmp/file1 /tmp/file2
# pipe
cat /tmp/file1 | cul
# multiple files and pipe
cat /tmp/file1 | cul /tmp/file2 /tmp/file3
```