home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / usr / share / doc / java-common / examples / classpath-from-jars-1
Encoding:
Text File  |  2000-11-09  |  268 b   |  13 lines

  1. # No shebang here: you have to source this file or to include
  2. # it into a shell startup file, since it changes the environment.
  3. # Bourne shell syntax.
  4.  
  5. # From: Aaron Brashears <gila@gila.org>
  6.  
  7. for jar in /usr/share/java/*.jar ; do
  8.  CLASSPATH=${CLASSPATH}:$jar
  9. done
  10.  
  11.  
  12.  
  13.