repo.or.cz
/
stompngo_examples.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Minor editorial changes to EXAMPLES.md
[stompngo_examples.git]
/
jinterop
/
cp.sh
blob
0d2bce62527e4257f4a523f1c6c6ef4041981a49
1
2
# ActiveMQ lib directory.
3
# You will need to change this path!
4
AHL
=/
ad
3
/
amq
/
lib
5
6
# CP will be the Java CLASSPATH
7
CP
=
.
8
9
# Main AMQ JAR files.
10
for
j
in
$
(
ls
-1
$AHL
/*
.jar
);
do
11
# echo $j
12
CP
=
"
${CP}
:
$j
"
13
done
14
15
# Need optional JARs as well.
16
for
j
in
$
(
ls
-1
$AHL
/
optional
/*
.jar
);
do
17
# echo $j
18
CP
=
"
${CP}
:
$j
"
19
done
20