/usr/bin/apturl is in apturl-common 0.5.2ubuntu11.
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 | #!/bin/sh
if [ "$KDE_FULL_SESSION" = "true" ] && [ -x /usr/bin/apturl-kde ]; then
apturl-kde $@
elif [ -x /usr/bin/apturl-gtk ]; then
apturl-gtk $@
elif [ -x /usr/bin/apturl-kde ]; then
apturl-kde $@
else
echo "Please install apturl-gtk or apturl-kde."
fi
|