Add in the "reset" command.

-Erik
This commit is contained in:
Eric Andersen
2000-08-21 21:18:52 +00:00
parent 202995c612
commit fa405d0cb2
8 changed files with 52 additions and 3 deletions

View File

@@ -229,6 +229,9 @@ const struct BB_applet applets[] = {
#ifdef BB_RENICE
{"renice", renice_main, _BB_DIR_USR_BIN},
#endif
#ifdef BB_RESET
{"reset", reset_main, _BB_DIR_USR_BIN, reset_usage},
#endif
#ifdef BB_RM
{"rm", rm_main, _BB_DIR_BIN, rm_usage},
#endif

View File

@@ -876,6 +876,16 @@ const char renice_usage[] =
;
#endif
#if defined BB_RESET
const char reset_usage[] =
"reset\n"
#ifndef BB_FEATURE_TRIVIAL_HELP
"\nResets the screen.\n"
#endif
;
#endif
#if defined BB_RM
const char rm_usage[] =
"rm [OPTION]... FILE...\n"