diff options
author | Rob Landley <rob@landley.net> | 2020-10-20 19:06:14 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-10-20 19:06:14 -0500 |
commit | 9c8b40514fc3adfe76cc60fe183ad162adbd327e (patch) | |
tree | d3f1461e062865986c1ba466a763939143005785 | |
parent | b840ceb0db53ee96e79f1f7fe1547eefb68df75a (diff) | |
download | toybox-9c8b40514fc3adfe76cc60fe183ad162adbd327e.tar.gz |
Typo.
-rw-r--r-- | toys/posix/sed.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/toys/posix/sed.c b/toys/posix/sed.c index 37a71db8..8fbef0cb 100644 --- a/toys/posix/sed.c +++ b/toys/posix/sed.c @@ -93,7 +93,7 @@ config SED b LABEL Branch, jumps to :LABEL (with no LABEL to end of SCRIPT) c TEXT Delete matching ADDRESS range and output TEXT instead i TEXT Insert text (output immediately) - r FILE Append contents of FILIE to output before reading next line. + r FILE Append contents of FILE to output before reading next line. s/S/R/F Search for regex S replace match with R using flags F. Delimiter is anything but \n or \, escape with \ to use in S or R. Printf escapes work. Unescaped & in R becomes full matched text, \1 @@ -114,8 +114,6 @@ config SED The TEXT arguments (to a c i) may end with an unescaped "\" to append the next line (leading whitespace is not skipped), and treat ";" as a literal character (use "\;" instead). - - */ #define FOR_sed |