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