summaryrefslogtreecommitdiff
path: root/Base
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-11-12 21:56:02 +0000
committerLinus Groh <mail@linusgroh.de>2021-11-12 21:56:02 +0000
commit2a04f1fa80721eac25b28d6151dce6aeee3bc320 (patch)
treedc28a618e8c1ba38a612ced775856da3f9c4710c /Base
parentc81cef614a93cfdbb70e17ff1cb347c9ebdf8de9 (diff)
downloadserenity-2a04f1fa80721eac25b28d6151dce6aeee3bc320.zip
Base: Add missing options to grep(1) and tr(1) manpages
Diffstat (limited to 'Base')
-rw-r--r--Base/usr/share/man/man1/grep.md1
-rw-r--r--Base/usr/share/man/man1/tr.md1
2 files changed, 2 insertions, 0 deletions
diff --git a/Base/usr/share/man/man1/grep.md b/Base/usr/share/man/man1/grep.md
index 2a8a4d291f..7e86bddc5c 100644
--- a/Base/usr/share/man/man1/grep.md
+++ b/Base/usr/share/man/man1/grep.md
@@ -24,6 +24,7 @@ $ grep [--recursive] [--extended-regexp] [--regexp Pattern] [-i] [--line-numbers
* `-a`, `--text`: Treat binary files as text (same as --binary-mode text)
* `-I`: Ignore binary files (same as --binary-mode skip)
* `--color WHEN`: When to use colored output for the matching text ([auto], never, always)
+* `-c`, `--count`: Output line count instead of line contents
## Arguments:
diff --git a/Base/usr/share/man/man1/tr.md b/Base/usr/share/man/man1/tr.md
index 5052c4c91e..77e6662b87 100644
--- a/Base/usr/share/man/man1/tr.md
+++ b/Base/usr/share/man/man1/tr.md
@@ -14,6 +14,7 @@ $ tr [--complement] [--delete] <from> [to]
* `--version`: Print version
* `-c`, `--complement`: Take the complement of the first set
* `-d`, `--delete`: Delete characters instead of replacing
+* `-s`, `--squeeze-repeats`: Omit repeated characters listed in the 'to' set from the output
## Arguments: