home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s053 / 5.ddi / usr / bin / clear < prev    next >
Encoding:
Text File  |  1990-12-08  |  730 b   |  24 lines

  1. #!/sbin/sh
  2. #    Copyright (c) 1990 UNIX System Laboratories, Inc.
  3. #    Copyright (c) 1984, 1986, 1987, 1988, 1989, 1990 AT&T
  4. #      All Rights Reserved
  5.  
  6. #    THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF
  7. #    UNIX System Laboratories, Inc.
  8. #    The copyright notice above does not evidence any
  9. #    actual or intended publication of such source code.
  10.  
  11.  
  12. #ident    "@(#)//usr/bin/clear.sl 1.2 4.0 12/08/90 62267 AT&T-USL"
  13. #    Copyright (c) 1987, 1988 Microsoft Corporation
  14. #      All Rights Reserved
  15.  
  16. #    This Module contains Proprietary Information of Microsoft
  17. #    Corporation and should be treated as Confidential.
  18.  
  19. # clear the screen with terminfo.
  20. # if an argument is given, print the clear string for that tty type
  21.  
  22. tput ${1:+-T$1} clear 2> /dev/null 
  23. exit 
  24.