home *** CD-ROM | disk | FTP | other *** search
Korn shell script | 1996-08-14 | 234 b | 13 lines |
- #!/bin/ksh
- #
- #
- # This script generates java doc documentation for all subdirs of the
- # src directory.
- #
- ##
- cd ../docs
- DOCDIR=${PWD}
- cd -
- export CLASSPATH=${CLASSPATH}:${PWD}
- javadoc -d ${DOCDIR} $(./dirlist | grep -v tests | tr / .)
-