small patch for hdfview shell script launching

Hi,

I'm using HDFView 2.11. We noticed today that filenames and paths with
spaces in them were not being open with hdfview.sh when passed as arguments.

This is fixed by the following micropatch:

-$JAVABIN/java -Xmx1024M -Djava.library.path="$INSTALLDIR/lib"
-Dhdfview.root="$INSTALLDIR" -jar "$INSTALLDIR/lib/jhdfview.jar" $*
+$JAVABIN/java -Xmx1024M -Djava.library.path="$INSTALLDIR/lib"
-Dhdfview.root="$INSTALLDIR" -jar "$INSTALLDIR/lib/jhdfview.jar" "$@"

-Jason