Viewing contents of file '../idllib/contrib/windt/clear.pro'
;+
; NAME:
; 
;	CLEAR
;	
; CATEGORY:
; 
;       Stupid little convenience routines.
;   
; PURPOSE:
; 
;	Clear the screen, just like the Unix command.
;	
; CALLING SEQUENCE:
; 
;       CLEAR
;
; RESTRICTIONS:
;
;       Only works on Unix platforms.
;	
; MODIFICATION HISTORY:
;
;       David L. Windt, Bell Labs, November 1989
;       windt@bell-labs.com
;-
pro clear
spawn,'clear'
return
end