sed: better help text
authorDenys Vlasenko <vda.linux@googlemail.com>
Tue, 13 Sep 2011 16:40:22 +0000 (18:40 +0200)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 13 Sep 2011 16:40:22 +0000 (18:40 +0200)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
editors/sed.c

index 1552cf3703cf9b4d1c5c35bdb57b60c0a5177208..c8bb503ea8cda2f6ea02ff4db5f3731b6081d064 100644 (file)
@@ -26,7 +26,7 @@
  * add_input_file() adds a FILE* to the list of input files.  We need to
  * know all input sources ahead of time to find the last line for the $ match.
  *
- * process_files() does actual sedding, reading data lines from each input FILE *
+ * process_files() does actual sedding, reading data lines from each input FILE*
  * (which could be stdin) and applying the sed command list (sed_cmd_head) to
  * each of the resulting lines.
  *
@@ -57,7 +57,8 @@
  */
 
 //usage:#define sed_trivial_usage
-//usage:       "[-efinr] SED_CMD [FILE]..."
+//usage:       "[-inr] [-f FILE]... [-e CMD]... [FILE]...\n"
+//usage:       "or: sed [-inr] CMD [FILE]..."
 //usage:#define sed_full_usage "\n\n"
 //usage:       "       -e CMD  Add CMD to sed commands to be executed"
 //usage:     "\n       -f FILE Add FILE contents to sed commands to be executed"