summarylogtreecommitdiffstats
path: root/textidote
blob: d43b437f114397ca0ceffda009e7d5175046dc5b (plain)
1
2
3
4
5
6
7
8
#!/usr/bin/env bash

CP=""
for name in /usr/share/java/textidote/*.jar; do
    CP="$CP:$name"
done

exec java -cp "$CP" "ca.uqac.lif.textidote.Main" --name textidote "$@"