diff options
author | Tim Schumacher <timschumi@gmx.de> | 2021-11-13 12:17:40 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-11-13 23:34:49 +0100 |
commit | 2e8330f78cf64fd30401f23b4552e1a3adeb770c (patch) | |
tree | 6f60eea28474e700666482b00da382c7c7eda7e0 /Base/usr | |
parent | 3c98a9430b275d75a42fcbda837a16958c8dd94b (diff) | |
download | serenity-2e8330f78cf64fd30401f23b4552e1a3adeb770c.zip |
Utilities/tr: Rework squeezing to be supported during more operations
Diffstat (limited to 'Base/usr')
-rw-r--r-- | Base/usr/share/man/man1/tr.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Base/usr/share/man/man1/tr.md b/Base/usr/share/man/man1/tr.md index 9bc5a7bdd9..bb8deaf2a2 100644 --- a/Base/usr/share/man/man1/tr.md +++ b/Base/usr/share/man/man1/tr.md @@ -14,7 +14,7 @@ $ tr [--complement] [--delete] [--squeeze-repeats] <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 +* `-s`, `--squeeze-repeats`: Omit repeated characters listed in the last given set from the output ## Arguments: |