diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-09-17 21:21:27 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-09-17 21:21:27 +0000 |
commit | 793c3b4a7dc986aee7b551eae5e8f3bd1200da5a (patch) | |
tree | cd7b1573f44cc4c0e177e259e81dd81c80ba6a83 | |
parent | dc180d14427fea95d57e8ad10953d271a47e6571 (diff) | |
download | busybox-w32-793c3b4a7dc986aee7b551eae5e8f3bd1200da5a.tar.gz busybox-w32-793c3b4a7dc986aee7b551eae5e8f3bd1200da5a.tar.bz2 busybox-w32-793c3b4a7dc986aee7b551eae5e8f3bd1200da5a.zip |
Clear screen too.
-rw-r--r-- | console-tools/reset.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ | |||
28 | 28 | ||
29 | extern int reset_main(int argc, char **argv) | 29 | extern int reset_main(int argc, char **argv) |
30 | { | 30 | { |
31 | printf("\033[?25h\033c"); | 31 | printf("\033[?25h\033c\033[J"); |
32 | return EXIT_SUCCESS; | 32 | return EXIT_SUCCESS; |
33 | } | 33 | } |
34 | 34 | ||