/usr/bin/doccentral is in doc-central 1.8.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 | #!/bin/bash
hostname="$DC_HOST"
if [ -z "$hostname" ]; then
hostname="`hostname -f`"
fi
if [ -n "$1" ]; then
exec sensible-browser http://$hostname/cgi-bin/doc-central/viewdoc.cgi?keyword=$1
else
exec sensible-browser http://$hostname/dc/
fi
|