An open API service indexing awesome lists of open source software.

https://github.com/mk-milly02/uniq

This is a lite version of the Unix tool `uniq`.
https://github.com/mk-milly02/uniq

cli flags unix-command

Last synced: 3 months ago
JSON representation

This is a lite version of the Unix tool `uniq`.

Awesome Lists containing this project

README

          

# uniq-tool

> This is a lite version of the Unix tool `uniq`.

> The uniq utility reads the specified input_file comparing adjacent lines, writes a copy of each unique input line to the output_file. If input_file is a single dash ('-') or absent, the standard input is read. If output_file is absent, standard output is used for output. The second and succeeding copies of identical adjacent input lines are not written. Repeated lines in the input will not be detected if they are not adjacent, so it may be necessary to sort the files first.

`go run main.go test.txt`

`go run main.go countries.txt | wc -l`

`cat test.txt | go run main.go -`

`cat test.txt | go run main.go - out.txt`

`go run main.go -c test.txt`

`go run main.go -d countries.txt`

`go run main.go -u test.txt`

`go run main.go -c -d countries.txt`