1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 13:47:45 +00:00

Base: Add missing options to grep(1) and tr(1) manpages

This commit is contained in:
Linus Groh 2021-11-12 21:56:02 +00:00
parent c81cef614a
commit 2a04f1fa80
2 changed files with 2 additions and 0 deletions

View file

@ -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:

View file

@ -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: