/usr/lib/libreoffice/program/cde-open-url is in libreoffice-common 1:3.5.7-0ubuntu13.
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/sh
if [ -x /usr/bin/mktemp ]
then
TMPFILE=`mktemp -t open-url.XXXXXX`
else
DTTMPDIR=`xrdb -query | grep DtTmpDir`
TMPFILE=${DTTMPDIR:-$HOME/.dt/tmp}/open-url.$$
fi
if [ -z "$TMPFILE" ]; then exit 1; fi
( echo "$1" > "$TMPFILE"; dtaction Open "$TMPFILE"; rm -f "$TMPFILE" ) &
exit 0
|