Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. #!/usr/bin/sh
  2. # Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T
  3. # All Rights Reserved
  4.  
  5. # THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T
  6. # The copyright notice above does not evidence any
  7. # actual or intended publication of such source code.
  8.  
  9. #ident "@(#)clear.sh 1.8 96/10/14 SMI" /* SVr4.0 1.3 */
  10. # Copyright (c) 1987, 1988 Microsoft Corporation
  11. # All Rights Reserved
  12.  
  13. # This Module contains Proprietary Information of Microsoft
  14. # Corporation and should be treated as Confidential.
  15.  
  16. # clear the screen with terminfo.
  17. # if an argument is given, print the clear string for that tty type
  18.  
  19. /usr/bin/tput ${1:+-T$1} clear 2> /dev/null
  20. exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement