diff options
author | Stephane Bortzmeyer <bortz@debian.org> | 2000-11-09 16:27:52 +0000 |
---|---|---|
committer | Stephane Bortzmeyer <bortz@debian.org> | 2000-11-09 16:27:52 +0000 |
commit | 4038e562e8cdab39cb008fa3fb61848c60424023 (patch) | |
tree | 713e0f217b31d782fa46a64a557393e4530f7ce8 | |
parent | 373e81fe1c0f5aafa010bf4c6003eb8162f8e4b1 (diff) | |
download | java-common-4038e562e8cdab39cb008fa3fb61848c60424023.tar.gz |
examples/ directory
-rwxr-xr-x | debian/rules | 2 | ||||
-rw-r--r-- | examples/classpath-from-jars-1 | 12 |
2 files changed, 13 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 8e4a0b6..afc7579 100755 --- a/debian/rules +++ b/debian/rules @@ -45,7 +45,7 @@ binary-arch: build install # dh_testversion dh_testdir dh_testroot - dh_installexamples + dh_installexamples examples/* dh_installmenu # dh_installemacsen # dh_installinit diff --git a/examples/classpath-from-jars-1 b/examples/classpath-from-jars-1 new file mode 100644 index 0000000..bea5802 --- /dev/null +++ b/examples/classpath-from-jars-1 @@ -0,0 +1,12 @@ +# No shebang here: you have to source this file or to include +# it into a shell startup file, since it changes the environment. +# Bourne shell syntax. + +# From: Aaron Brashears <gila@gila.org> + +for jar in /usr/share/java/*.jar ; do + CLASSPATH=${CLASSPATH}:$jar +done + + + |