Codebase list findbugs / 5b17f133-3c87-49f1-be4a-63ca24e132f2/main src / scripts / standard / fbwrap
5b17f133-3c87-49f1-be4a-63ca24e132f2/main

Tree @5b17f133-3c87-49f1-be4a-63ca24e132f2/main (Download .tar.gz)

fbwrap @5b17f133-3c87-49f1-be4a-63ca24e132f2/main

bae81f4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
#! /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