diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2013-10-30 13:00:00 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2013-10-30 13:00:00 +0100 |
commit | a82e32d9ce199db01aaea92ebcb39a23d90e5b85 (patch) | |
tree | 4f4322c6f5cfc5fc78e237483ac65df7245e985d | |
parent | 9d46a7a9a4d70756bab24de96221bd3a44ef8f46 (diff) | |
download | busybox-w32-a82e32d9ce199db01aaea92ebcb39a23d90e5b85.tar.gz busybox-w32-a82e32d9ce199db01aaea92ebcb39a23d90e5b85.tar.bz2 busybox-w32-a82e32d9ce199db01aaea92ebcb39a23d90e5b85.zip |
sed: document -E in help text
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | editors/sed.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/sed.c b/editors/sed.c index e3cce433e..5577f3582 100644 --- a/editors/sed.c +++ b/editors/sed.c | |||
@@ -59,15 +59,15 @@ | |||
59 | */ | 59 | */ |
60 | 60 | ||
61 | //usage:#define sed_trivial_usage | 61 | //usage:#define sed_trivial_usage |
62 | //usage: "[-inr] [-f FILE]... [-e CMD]... [FILE]...\n" | 62 | //usage: "[-inrE] [-f FILE]... [-e CMD]... [FILE]...\n" |
63 | //usage: "or: sed [-inr] CMD [FILE]..." | 63 | //usage: "or: sed [-inrE] CMD [FILE]..." |
64 | //usage:#define sed_full_usage "\n\n" | 64 | //usage:#define sed_full_usage "\n\n" |
65 | //usage: " -e CMD Add CMD to sed commands to be executed" | 65 | //usage: " -e CMD Add CMD to sed commands to be executed" |
66 | //usage: "\n -f FILE Add FILE contents to sed commands to be executed" | 66 | //usage: "\n -f FILE Add FILE contents to sed commands to be executed" |
67 | //usage: "\n -i[SFX] Edit files in-place (otherwise sends to stdout)" | 67 | //usage: "\n -i[SFX] Edit files in-place (otherwise sends to stdout)" |
68 | //usage: "\n Optionally back files up, appending SFX" | 68 | //usage: "\n Optionally back files up, appending SFX" |
69 | //usage: "\n -n Suppress automatic printing of pattern space" | 69 | //usage: "\n -n Suppress automatic printing of pattern space" |
70 | //usage: "\n -r Use extended regex syntax" | 70 | //usage: "\n -r,-E Use extended regex syntax" |
71 | //usage: "\n" | 71 | //usage: "\n" |
72 | //usage: "\nIf no -e or -f, the first non-option argument is the sed command string." | 72 | //usage: "\nIf no -e or -f, the first non-option argument is the sed command string." |
73 | //usage: "\nRemaining arguments are input files (stdin if none)." | 73 | //usage: "\nRemaining arguments are input files (stdin if none)." |