2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-05 22:58:32 +00:00
|
|
|
/*
|
|
|
|
* Mini clear implementation for busybox
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
1999-10-05 22:58:32 +00:00
|
|
|
*
|
2010-08-16 20:14:46 +02:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
1999-10-05 22:58:32 +00:00
|
|
|
*/
|
2016-11-23 10:39:27 +01:00
|
|
|
//config:config CLEAR
|
2017-07-18 22:01:24 +02:00
|
|
|
//config: bool "clear (tiny)"
|
2016-11-23 10:39:27 +01:00
|
|
|
//config: default y
|
|
|
|
//config: help
|
2017-07-21 09:50:55 +02:00
|
|
|
//config: This program clears the terminal screen.
|
2016-11-23 10:39:27 +01:00
|
|
|
|
2017-08-03 03:29:32 +02:00
|
|
|
//applet:IF_CLEAR(APPLET_NOFORK(clear, clear, BB_DIR_USR_BIN, BB_SUID_DROP, clear))
|
2016-11-23 10:39:27 +01:00
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_CLEAR) += clear.o
|
2011-03-27 23:42:28 +02:00
|
|
|
|
|
|
|
//usage:#define clear_trivial_usage
|
|
|
|
//usage: ""
|
|
|
|
//usage:#define clear_full_usage "\n\n"
|
|
|
|
//usage: "Clear screen"
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
1999-10-05 16:24:54 +00:00
|
|
|
|
2017-09-13 22:48:30 +02:00
|
|
|
#define ESC "\033"
|
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int clear_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 09:18:54 +00:00
|
|
|
int clear_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
|
1999-10-05 16:24:54 +00:00
|
|
|
{
|
2010-05-16 23:42:13 +02:00
|
|
|
/* home; clear to the end of screen */
|
2017-09-13 22:48:30 +02:00
|
|
|
return full_write1_str(ESC"[H" ESC"[J") != 6;
|
1999-10-05 16:24:54 +00:00
|
|
|
}
|