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
|
|
|
*/
|
|
|
|
|
2003-10-22 16:04:15 +05:30
|
|
|
/* no options, no getopt */
|
|
|
|
|
2000-08-22 02:56:33 +05:30
|
|
|
#include <stdio.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <stdlib.h>
|
2003-12-20 12:37:22 +05:30
|
|
|
#include <unistd.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
2000-08-22 02:56:33 +05:30
|
|
|
|
2006-03-07 02:17:33 +05:30
|
|
|
int reset_main(int argc, char **argv)
|
2000-08-22 02:56:33 +05:30
|
|
|
{
|
2005-10-12 14:08:28 +05:30
|
|
|
if (isatty(1)) {
|
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");
|
|
|
|
}
|
2003-10-22 16:04:15 +05:30
|
|
|
return EXIT_SUCCESS;
|
2000-08-22 02:56:33 +05:30
|
|
|
}
|
|
|
|
|