view toys/other/clear.c @ 1008:a55854bde872

su: cleanery * make help message more like others * s/TT\.(.)Argu/TT.\1/g * move environ to toys.h * simplify failure messages * clear password before quit * not check what execve returns * -lc
author Strake <strake888@gmail.com>
date Sat, 17 Aug 2013 02:54:58 -0500
parents 786841fdb1e0
children e85e5f3b87c2
line wrap: on
line source

/* clear.c - clear the screen
 *
 * Copyright 2012 Rob Landley <rob@landley.net>

USE_CLEAR(NEWTOY(clear, NULL, TOYFLAG_USR|TOYFLAG_BIN))

config CLEAR
  bool "clear"
  default y
  help
    Clear the screen.
*/

#include "toys.h"

void clear_main(void)
{
  write(1, "\e[2J\e[H", 7);
}