aboutsummaryrefslogtreecommitdiffstats
path: root/jrt/runexample.sh
blob: 4b1547ae4e771f7a7c27ed67829620f14b4be1cb (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
if [ $# -eq 0 ]; then
    echo "usage: $0 <class> [class args]"
    echo "  available class files:"
    ls examples/classes
else
    java -cp build/classes:examples/classes "$@"
fi