1*1999c518SAntoine Leca#!/bin/sh - 2*1999c518SAntoine Leca# $NetBSD: clear.sh,v 1.2 1994/12/07 08:49:09 jtc Exp $ 3*1999c518SAntoine Leca# 4*1999c518SAntoine Leca# Copyright (c) 1989, 1993 5*1999c518SAntoine Leca# The Regents of the University of California. All rights reserved. 6*1999c518SAntoine Leca# 7*1999c518SAntoine Leca# Redistribution and use in source and binary forms, with or without 8*1999c518SAntoine Leca# modification, are permitted provided that the following conditions 9*1999c518SAntoine Leca# are met: 10*1999c518SAntoine Leca# 1. Redistributions of source code must retain the above copyright 11*1999c518SAntoine Leca# notice, this list of conditions and the following disclaimer. 12*1999c518SAntoine Leca# 2. Redistributions in binary form must reproduce the above copyright 13*1999c518SAntoine Leca# notice, this list of conditions and the following disclaimer in the 14*1999c518SAntoine Leca# documentation and/or other materials provided with the distribution. 15*1999c518SAntoine Leca# 3. All advertising materials mentioning features or use of this software 16*1999c518SAntoine Leca# must display the following acknowledgement: 17*1999c518SAntoine Leca# This product includes software developed by the University of 18*1999c518SAntoine Leca# California, Berkeley and its contributors. 19*1999c518SAntoine Leca# 4. Neither the name of the University nor the names of its contributors 20*1999c518SAntoine Leca# may be used to endorse or promote products derived from this software 21*1999c518SAntoine Leca# without specific prior written permission. 22*1999c518SAntoine Leca# 23*1999c518SAntoine Leca# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 24*1999c518SAntoine Leca# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 25*1999c518SAntoine Leca# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 26*1999c518SAntoine Leca# ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 27*1999c518SAntoine Leca# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 28*1999c518SAntoine Leca# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 29*1999c518SAntoine Leca# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 30*1999c518SAntoine Leca# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 31*1999c518SAntoine Leca# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 32*1999c518SAntoine Leca# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 33*1999c518SAntoine Leca# SUCH DAMAGE. 34*1999c518SAntoine Leca# 35*1999c518SAntoine Leca# @(#)clear.sh 8.1 (Berkeley) 6/6/93 36*1999c518SAntoine Leca# 37*1999c518SAntoine Leca 38*1999c518SAntoine Lecaexec tput clear 39