/usr/bin/hdfview is in hdfview 2.11.0+dfsg-3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | #!/bin/sh
# Shell script wrapper around the hdfview program,
# Copyright 2009 by Sylvestre Ledru <sylvestre@debian.og>
#
# Include the wrappers utility script
. /usr/lib/java-wrappers/java-wrappers.sh
# We prefer to use openjdk or Sun's java if available
find_java_runtime openjdk sun || find_java_runtime
find_jars jhdf jhdf5 jhdfobj jhdf4obj jhdf5obj jhdfview jgraph slf4j-api slf4j-nop
JAVA_ARGS="-Djava.library.path=/usr/lib/jni/ -Dswing.systemlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel "
run_java ncsa.hdf.view.HDFView -root /usr/share/doc/libjhdf-doc/ "$*"
|