/usr/bin/qbrowser is in qgis 2.14.11+dfsg-3+deb9u1.
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 | #!/bin/sh
if dpkg -s qgis-plugin-grass >/dev/null 2>&1; then
if [ "$LD_LIBRARY_PATH" = "" ]; then
LD_LIBRARY_PATH=/usr/lib/grass72/lib
else
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/grass72/lib
fi
fi
export LD_LIBRARY_PATH
if [ -r /etc/default/qgis ]; then
. /etc/default/qgis
fi
exec $0.bin $QGIS_OPTS "$@"
|