2000-08-22 02:56:33 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* Mini reset implementation for busybox
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
2001-10-24 10:30:29 +05:30
|
|
|
* Written by Erik Andersen and Kent Robotti <robotti@metconnect.com>
|
2000-08-22 02:56:33 +05:30
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2000-08-22 02:56:33 +05:30
|
|
|
*/
|
2016-11-23 15:09:27 +05:30
|
|
|
//config:config RESET
|
2017-07-19 01:31:24 +05:30
|
|
|
//config: bool "reset (275 bytes)"
|
2016-11-23 15:09:27 +05:30
|
|
|
//config: default y
|
|
|
|
//config: help
|
2017-07-21 13:20:55 +05:30
|
|
|
//config: This program is used to reset the terminal screen, if it
|
|
|
|
//config: gets messed up.
|
2016-11-23 15:09:27 +05:30
|
|
|
|
2017-08-04 23:25:01 +05:30
|
|
|
//applet:IF_RESET(APPLET_NOEXEC(reset, reset, BB_DIR_USR_BIN, BB_SUID_DROP, reset))
|
2016-11-23 15:09:27 +05:30
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_RESET) += reset.o
|
2008-02-26 21:03:10 +05:30
|
|
|
|
2011-03-28 03:12:28 +05:30
|
|
|
//usage:#define reset_trivial_usage
|
|
|
|
//usage: ""
|
|
|
|
//usage:#define reset_full_usage "\n\n"
|
|
|
|
//usage: "Reset the screen"
|
|
|
|
|
2017-09-18 19:58:43 +05:30
|
|
|
/* "Standard" version of this tool is in ncurses package */
|
|
|
|
|
2010-10-29 01:04:56 +05:30
|
|
|
#include "libbb.h"
|
|
|
|
|
|
|
|
#define ESC "\033"
|
|
|
|
|
2008-02-26 21:03:10 +05:30
|
|
|
#if ENABLE_STTY
|
|
|
|
int stty_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
|
|
|
#endif
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int reset_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int reset_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
|
2000-08-22 02:56:33 +05:30
|
|
|
{
|
2008-02-26 21:03:10 +05:30
|
|
|
static const char *const args[] = {
|
|
|
|
"stty", "sane", NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
/* no options, no getopt */
|
|
|
|
|
2010-10-29 01:04:56 +05:30
|
|
|
if (/*isatty(STDIN_FILENO) &&*/ isatty(STDOUT_FILENO)) {
|
2003-12-20 12:37:22 +05:30
|
|
|
/* See 'man 4 console_codes' for details:
|
2010-05-17 03:12:13 +05:30
|
|
|
* "ESC c" -- Reset
|
2011-02-10 14:48:22 +05:30
|
|
|
* "ESC ( B" -- Select G0 Character Set (B = US)
|
2017-09-14 02:18:30 +05:30
|
|
|
* "ESC [ m" -- Reset all display attributes
|
2010-10-29 01:04:56 +05:30
|
|
|
* "ESC [ J" -- Erase to the end of screen
|
2010-05-17 03:12:13 +05:30
|
|
|
* "ESC [ ? 25 h" -- Make cursor visible
|
2003-12-20 12:37:22 +05:30
|
|
|
*/
|
2017-09-14 02:18:30 +05:30
|
|
|
printf(ESC"c" ESC"(B" ESC"[m" ESC"[J" ESC"[?25h");
|
2008-02-26 21:03:10 +05:30
|
|
|
/* http://bugs.busybox.net/view.php?id=1414:
|
|
|
|
* people want it to reset echo etc: */
|
|
|
|
#if ENABLE_STTY
|
|
|
|
return stty_main(2, (char**)args);
|
|
|
|
#else
|
2017-02-18 03:31:13 +05:30
|
|
|
/* Make sure stdout gets drained before we execvp */
|
|
|
|
fflush_all();
|
2008-03-17 14:34:04 +05:30
|
|
|
execvp("stty", (char**)args);
|
2008-02-26 21:03:10 +05:30
|
|
|
#endif
|
2003-12-20 12:37:22 +05:30
|
|
|
}
|
2003-10-22 16:04:15 +05:30
|
|
|
return EXIT_SUCCESS;
|
2000-08-22 02:56:33 +05:30
|
|
|
}
|