/usr/bin/dicomimageviewer is in pixelmed-apps 20140816-1.
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 16 17 18 | #! /bin/sh
# Shell script wrapper around the dicomimageviewer program,
# Copyright 2010-2012 by Mathieu Malaterre <malat@debian.org>
#
# Licensed under the same terms as pixelmed toolkit itself, that is under
# the conditions of the BSD licence.
# 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 pixelmed hsqldb vecmath jmdns commons-codec jai_imageio clibwrapper_jiio
#java -Xmx512m -Xms512m -cp
run_java $HEADLESS com.pixelmed.display.DicomImageViewer "$@"
|