/usr/bin/debian-reference is in debian-reference-common 2.68.
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 | #!/bin/sh
# POSIX compliant script to search browser
set -e # stop at first error
#set -x # debug
BDOCUMENTSTEM="/usr/share/debian-reference"
if [ -r $BDOCUMENTSTEM/index.html ]; then
/usr/bin/sensible-browser $BDOCUMENTSTEM/index.html
fi
|