blob: f488c78627e2cb2bafdc8265b5f6bbad791e9522 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
# Set the classpath to the directory containing the script
classpath="$(dirname "$0")"
# Run the Scala program and capture its output
result=$(scala -classpath "$classpath" imagePager "$@")
# Print the result
#echo "Received result: $result"
eval "$result"
|