Codebase list findbugs / debian/3.1.0_preview2-3 src / scripts / standard / fbwrap
debian/3.1.0_preview2-3

Tree @debian/3.1.0_preview2-3 (Download .tar.gz)

fbwrap @debian/3.1.0_preview2-3raw · history · blame

#! /bin/sh

# A convenient way to call the main() method of a class
# in findbugs.jar.

@GET_FBHOME@

@SET_DEFAULT_JAVA@

if [ $# -eq 0 ]; then
	echo "Usage: fbwrap <main class name> <args...>"
	exit 1
fi

fb_mainclass="$1"
shift

@WRAP_JAVA@

# vim:ts=3