home *** CD-ROM | disk | FTP | other *** search
/ The Net: Ultimate Internet Guide / WWLCD1.ISO / pc / java / enxle1f6 / src / dirlist < prev    next >
Encoding:
Korn shell script  |  1996-08-14  |  91 b   |  6 lines

  1. #!/bin/ksh
  2. for i in $(find games win -name *.java -print)
  3. do
  4.     print ${i%/*}
  5. done | sort -u
  6.