hdfView.sh problem with spaces in filenames

Hi,
I found that opening a file with hdfview.sh script always fail if the filename contains spaces.
I found a simple fix for hdfview.sh:

< $JAVABIN/java -Xmx1024M -Djava.library.path="$INSTALLDIR/lib:$INSTALLDIR/lib/ext" -Dhdfview.root="$INSTALLDIR" -jar "$INSTALLDIR/lib/jhdfview.jar" -root "$INSTALLDIR/share" "$@"

···

---
> $JAVABIN/java -Xmx1024M -Djava.library.path="$INSTALLDIR/lib:$INSTALLDIR/lib/ext" -Dhdfview.root="$INSTALLDIR" -jar "$INSTALLDIR/lib/jhdfview.jar" -root "$INSTALLDIR/share" $*

I just substituted $* with "$@" at the end of the line.

Best regards,
dp