X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=sed.c;h=4dfc0246c9e87a9b54033a587ad842dbb99ea8b9;hb=b052b477227d3ef735375d85da4782260203ef45;hp=34756e09a183df6e6ea37fc5bfcaebaee16646ab;hpb=50d6360771be509737bb55b2cc5bc5e25f2a4fea;p=oweals%2Fbusybox.git diff --git a/sed.c b/sed.c index 34756e09a..4dfc0246c 100644 --- a/sed.c +++ b/sed.c @@ -32,18 +32,18 @@ #include static const char sed_usage[] = -"sed [-n] [-e script] [file...]\n" -"Allowed scripts come in the following form:\n\n" -"'s/regexp/replacement/[gp]'\n" -"\tattempt to match regexp against the pattern space\n" -"\tand if successful replaces the matched portion with replacement.\n\n" +"sed [-n] [-e script] [file...]\n\n" +"Allowed sed scripts come in the following form:\n" +"\t's/regexp/replacement/[gp]'\n" +"which attempt to match regexp against the pattern space\n" +"and if successful replaces the matched portion with replacement.\n\n" "Options:\n" "-e\tadd the script to the commands to be executed\n" "-n\tsuppress automatic printing of pattern space\n\n" #if defined BB_REGEXP -"This version of sed matches full regexps.\n"; +"This version of sed matches full regular expresions.\n"; #else -"This version of sed matches strings (not full regexps).\n"; +"This version of sed matches strings (not full regular expresions).\n"; #endif