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
|
|
|
*/
|
|
|
|
|
2008-02-26 21:03:10 +05:30
|
|
|
/* BTW, which "standard" package has this utility? It doesn't seem
|
|
|
|
* to be ncurses, coreutils, console-tools... then what? */
|
|
|
|
|
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"
|
|
|
|
|
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)
|
2010-05-17 03:12:13 +05:30
|
|
|
* "ESC [ 0 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
|
|
|
*/
|
2011-02-10 14:48:22 +05:30
|
|
|
printf(ESC"c" ESC"(B" ESC"[0m" 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
|
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
|
|
|
}
|