Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'clear.c')
-rw-r--r--clear.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/clear.c b/clear.c
new file mode 100644
index 000000000..21a890c9e
--- /dev/null
+++ b/clear.c
@@ -0,0 +1,13 @@
+#include "internal.h"
+#include <stdio.h>
+
+const char clear_usage[] = "clear\n"
+"\n"
+"\tClears the screen.\n";
+
+extern int
+clear_main(struct FileInfo * i, int argc, char * * argv)
+{
+ printf("\033[H\033[J");
+ return 0;
+}