aboutsummaryrefslogtreecommitdiff
path: root/sed.c
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-07-16 20:57:15 +0000
committerMatt Kraai <kraai@debian.org>2000-07-16 20:57:15 +0000
commitbf181b9338152759fd56c8009e9a962a84808e7c (patch)
treee8c416c791c690f661c513340662e4e98ff3464a /sed.c
parent3bd8bd89ee9d0b65bf279e1ecad826a5f2f0a217 (diff)
downloadbusybox-bf181b9338152759fd56c8009e9a962a84808e7c.tar.gz
Extract usage information into a separate file.
Diffstat (limited to 'sed.c')
-rw-r--r--sed.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/sed.c b/sed.c
index 1f1e9069c..4d4886e19 100644
--- a/sed.c
+++ b/sed.c
@@ -85,22 +85,6 @@ static int ncmds = 0; /* number of sed commands */
/*static char *cur_file = NULL;*/ /* file currently being processed XXX: do I need this? */
-static const char sed_usage[] =
- "sed [-Vhnef] pattern [files...]\n"
-#ifndef BB_FEATURE_TRIVIAL_HELP
- "\n"
- "-n\tsuppress automatic printing of pattern space\n"
- "-e script\tadd the script to the commands to be executed\n"
- "-f scriptfile\tadd the contents of script-file to the commands to be executed\n"
- "-h\tdisplay this help message\n"
- "-V\toutput version information and exit\n"
- "\n"
- "If no -e or -f is given, the first non-option argument is taken as the\n"
- "sed script to interpret. All remaining arguments are names of input\n"
- "files; if no input files are specified, then the standard input is read.\n"
-#endif
- ;
-
#if 0
static void destroy_cmd_strs()
{