diff options
author | Elliott Hughes <enh@google.com> | 2020-05-29 11:06:06 -0700 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-05-31 00:42:59 -0500 |
commit | 9078931262538847f34d2a76c154ecdd5ad0efe1 (patch) | |
tree | 1b53b6a29966355afca6134d8f014ff89742035d /toys | |
parent | aafe864873bfeef4123e8ae703d8e6f939ac0941 (diff) | |
download | toybox-9078931262538847f34d2a76c154ecdd5ad0efe1.tar.gz |
sed: add -s to the synopsis too.
Diffstat (limited to 'toys')
-rw-r--r-- | toys/posix/sed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/sed.c b/toys/posix/sed.c index 7d00a3a7..37a71db8 100644 --- a/toys/posix/sed.c +++ b/toys/posix/sed.c @@ -23,7 +23,7 @@ config SED bool "sed" default y help - usage: sed [-inrzE] [-e SCRIPT]...|SCRIPT [-f SCRIPT_FILE]... [FILE...] + usage: sed [-inrszE] [-e SCRIPT]...|SCRIPT [-f SCRIPT_FILE]... [FILE...] Stream editor. Apply editing SCRIPTs to lines of input. |