diff options
author | anarchyrucks <anarchyrucks@live.com> | 2022-01-09 17:43:21 +0545 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-01-09 04:27:26 -0800 |
commit | 75e31a4749d448c0468e2b7fc8197c384dfdca0f (patch) | |
tree | d9d185f60c1a115ec7b621b44f87585d16743f60 | |
parent | 9aa556fdf07acf4e5cf2bb3e8d353ede513ef143 (diff) | |
download | serenity-75e31a4749d448c0468e2b7fc8197c384dfdca0f.zip |
Base: Add uniq(1) manpage
-rw-r--r-- | Base/usr/share/man/man1/uniq.md | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Base/usr/share/man/man1/uniq.md b/Base/usr/share/man/man1/uniq.md new file mode 100644 index 0000000000..f58bdaad87 --- /dev/null +++ b/Base/usr/share/man/man1/uniq.md @@ -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 +``` |