| OLD | NEW | 
|   1 #!/bin/sh |   1 #! /bin/sh | 
|   2  |   2  | 
|   3 # General purpose utility for filtering/transforming |   3 # General purpose utility for filtering/transforming | 
|   4 # bug collection and/or historical bug collections |   4 # bug collection and/or historical bug collections | 
|   5  |   5  | 
|   6 program="$0" |   6 program="$0" | 
|   7  |   7  | 
|   8 # Follow symlinks until we get to the actual file. |   8 # Follow symlinks until we get to the actual file. | 
|   9 while [ -h "$program" ]; do |   9 while [ -h "$program" ]; do | 
|  10         link=`ls -ld "$program"` |  10         link=`ls -ld "$program"` | 
|  11         link=`expr "$link" : '.*-> \(.*\)'` |  11         link=`expr "$link" : '.*-> \(.*\)'` | 
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  69 fb_maxheap=${fb_maxheap:-"-Xmx768m"} |  69 fb_maxheap=${fb_maxheap:-"-Xmx768m"} | 
|  70 fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"} |  70 fb_appjar=${fb_appjar:-"$findbugs_home/lib/findbugs.jar"} | 
|  71 set -f |  71 set -f | 
|  72 #echo command: \ |  72 #echo command: \ | 
|  73 exec "$fb_javacmd" \ |  73 exec "$fb_javacmd" \ | 
|  74         -classpath "$fb_appjar$fb_pathsep$CLASSPATH" \ |  74         -classpath "$fb_appjar$fb_pathsep$CLASSPATH" \ | 
|  75         -Dfindbugs.home="$findbugs_home"\ |  75         -Dfindbugs.home="$findbugs_home"\ | 
|  76         $fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs |  76         $fb_maxheap $fb_jvmargs $fb_mainclass ${@:+"$@"} $fb_appargs | 
|  77  |  77  | 
|  78 # vim:ts=3 |  78 # vim:ts=3 | 
| OLD | NEW |