/usr/bin/chemstruc is in chemical-structures 2.2.dfsg.0-8.
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 19 20 21 22 23 24 25 | #!/bin/sh
case $LANG in
fr*)
index=index_fr.html
;;
de*)
index=index_de.html
;;
*)
index=index_en.html
;;
esac
if [ -x /usr/bin/firefox ]; then
BROWSER=firefox
else
if [ -x /usr/bin/mozilla ]; then
BROWSER=mozilla
else
BROWSER=sensible-browser
fi
fi
($BROWSER http://localhost/chemical-structures/$index &)
|