mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
Base: Add uniq(1) manpage
This commit is contained in:
parent
9aa556fdf0
commit
75e31a4749
Notes:
sideshowbarker
2024-07-17 21:20:21 +09:00
Author: https://github.com/axispx 🔰
Commit: 75e31a4749
Pull-request: https://github.com/SerenityOS/serenity/pull/11761
1 changed files with 28 additions and 0 deletions
28
Base/usr/share/man/man1/uniq.md
Normal file
28
Base/usr/share/man/man1/uniq.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
## Name
|
||||
|
||||
uniq - filter out repeated lines
|
||||
|
||||
## Synopsis
|
||||
|
||||
```**sh
|
||||
$ uniq [--version] [INPUT] [OUTPUT]
|
||||
```
|
||||
|
||||
## Description
|
||||
|
||||
Filter out repeated lines from INPUT (or standard input) and write to OUTPUT (or standard output).
|
||||
|
||||
## Options
|
||||
|
||||
* `--help`: Display help message and exit
|
||||
* `--version`: Print version
|
||||
|
||||
## Examples
|
||||
|
||||
```sh
|
||||
# Filter out repeated lines from README.md and write to standard output
|
||||
$ uniq README.md
|
||||
|
||||
# Filter out repeated lines from README.md and write to UNIQUE.md
|
||||
$ uniq README.md UNIQUE.md
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue