summaryrefslogtreecommitdiff
path: root/examples/classpath-from-jars-1
blob: bea580272802c27253f1cf9a046e1df2d6d13cc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
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