summaryrefslogtreecommitdiff
path: root/examples/classpath-from-jars-1
diff options
context:
space:
mode:
authorEmmanuel Bourg <ebourg@apache.org>2015-09-25 11:45:00 +0200
committerEmmanuel Bourg <ebourg@apache.org>2015-09-25 11:46:51 +0200
commit9ffce3d48ab7a57ccb0aceb74649badeea8c213c (patch)
treef3cd67977a3e9e9cf3ecdfea7bd3f5d679c574d4 /examples/classpath-from-jars-1
parent1c4b9772cc89c84de1966001b8342606a065cfdf (diff)
downloadjava-common-9ffce3d48ab7a57ccb0aceb74649badeea8c213c.tar.gz
Removed the unused classpath-from-jars-1 example
Diffstat (limited to 'examples/classpath-from-jars-1')
-rw-r--r--examples/classpath-from-jars-112
1 files changed, 0 insertions, 12 deletions
diff --git a/examples/classpath-from-jars-1 b/examples/classpath-from-jars-1
deleted file mode 100644
index bea5802..0000000
--- a/examples/classpath-from-jars-1
+++ /dev/null
@@ -1,12 +0,0 @@
-# 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
-
-
-