aboutsummaryrefslogtreecommitdiffstats
path: root/jrt/runexample.sh
blob: 1a8dab787c262d712b6b4c6b9e12c497bafb7ca4 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/bin/sh
# Copyright Yahoo. 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