diff options
Diffstat (limited to 'editors')
-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)." |