Sign in
android
/
platform
/
external
/
apache-velocity-engine
/
a81256e4
/
.
/
examples
/
app_example2
/
example2.sh
blob: ba1906f464c4130652537448e1b064bedefd8f91 [
file
] [
log
] [
blame
]
#!/bin/sh
_VELCP
=.
for
i
in
../../
bin
/*.
jar
do
_VELCP
=
$_VELCP
:
"$i"
done
# convert the unix path to windows
if
[
"$OSTYPE"
=
"cygwin32"
]
||
[
"$OSTYPE"
=
"cygwin"
]
;
then
_VELCP
=
`cygpath --path --windows "$_VELCP"`
fi
java
-
cp $_VELCP
Example2