From: Eric Andersen Date: Tue, 17 Sep 2002 21:21:27 +0000 (-0000) Subject: Clear screen too. X-Git-Tag: 0_60_4~3 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=793c3b4a7dc986aee7b551eae5e8f3bd1200da5a;p=oweals%2Fbusybox.git Clear screen too. --- diff --git a/console-tools/reset.c b/console-tools/reset.c index 0039afa69..593819bac 100644 --- a/console-tools/reset.c +++ b/console-tools/reset.c @@ -28,7 +28,7 @@ extern int reset_main(int argc, char **argv) { - printf("\033[?25h\033c"); + printf("\033[?25h\033c\033[J"); return EXIT_SUCCESS; }