home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / enxle1f6 / src / findmissing.ksh < prev    next >
Encoding:
Text File  |  1996-08-14  |  136 b   |  10 lines

  1. for i in $(find . -name *.java -print)
  2. do
  3.     file=../classes/${i%.java}.class
  4.     if test -r $file
  5.     then
  6.     else
  7.         print $i 
  8.     fi
  9. done
  10.