#
# usage:        man.sh
#
# abstract:     This Bourne Shell script no longer installs man
#               pages. It prints a message informing the user to use
#
#                             matlabdoc -man
#
#		to view the man pages. Until the batch case is
#		changed it still excepts the old input, but does
#		nothing with it.
#
# note(s):      1. This routine must be called using a . (period)
#
# Copyright (c) 1992-1997 by The MathWorks, Inc.
# $Revision: 1.21 $  $Date: 1997/05/08 22:04:44 $
#----------------------------------------------------------------------------
#
#		Get the man directory for MATLAB man pages [1, 2, 3]
#		------------------------------------------
#
    . $dir/$clearsc_sh
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo '                         MATLAB man pages'
echo '                         ----------------'
echo ' '
echo '    The man pages are no longer installed in a system directory.'
echo '    To view them at anytime after installation execute the following'
echo '    command at your Unix shell prompt:'
echo ' '
echo '                          matlabdoc -man'     
echo ' '
echo '    Location:  $MATLAB/man/unformatted/* - unformatted manual pages.'
echo '               $MATLAB/man/formatted/*   - formatted manual pages.'
echo ' '
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    . $dir/$cont_sh
