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
|
|
|
*
|
2006-07-12 13:26:04 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2000-08-22 02:56:33 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
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? */
|
|
|
|
|
|
|
|
#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 */
|
|
|
|
|
2008-05-19 13:48:50 +05:30
|
|
|
if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
|
2003-12-20 12:37:22 +05:30
|
|
|
/* See 'man 4 console_codes' for details:
|
|
|
|
* "ESC c" -- Reset
|
|
|
|
* "ESC ( K" -- Select user mapping
|
|
|
|
* "ESC [ J" -- Erase display
|
2005-10-12 14:08:28 +05:30
|
|
|
* "ESC [ 0 m" -- Reset all display attributes
|
2003-12-20 12:37:22 +05:30
|
|
|
* "ESC [ ? 25 h" -- Make cursor visible.
|
|
|
|
*/
|
|
|
|
printf("\033c\033(K\033[J\033[0m\033[?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
|
|
|
}
|