summarylogtreecommitdiffstats
path: root/kaitai-struct-compiler
blob: bb13512569d7a547d0c1dc78bbc6c6ebc57c36b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

LIBS=/usr/share/java/kaitai-struct-compiler/*
LIBS_STR=""

for f in $LIBS
do
	LIBS_STR="$LIBS_STR:$f"
done

java -cp "$LIBS_STR" io.kaitai.struct.Main "$@"