From 2a04f1fa80721eac25b28d6151dce6aeee3bc320 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Fri, 12 Nov 2021 21:56:02 +0000 Subject: [PATCH] Base: Add missing options to grep(1) and tr(1) manpages --- Base/usr/share/man/man1/grep.md | 1 + Base/usr/share/man/man1/tr.md | 1 + 2 files changed, 2 insertions(+) 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] [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: