summarylogtreecommitdiffstats
path: root/filebydate.sh
blob: 3cff626e297fe74d492c4068116e5ad30168b73c (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
if ! /usr/bin/java -version 2>&1 | grep 'version "1.8' >/dev/null
then
	echo "filebydate requires Java 8" >&2
	exit 1
fi

#unset JAVA_TOOL_OPTIONS
exec /usr/bin/java -jar '/usr/share/java/filebydate/filebydate.jar' "$@"