/usr/bin/mate-open is in ubuntu-mate-default-settings 18.04.17.
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 | #!/usr/bin/env bash
if [ -x /usr/bin/gio ]; then
gio open "${1}"
elif [ -x /usr/bin/gvfs-open ]; then
gvfs-open "${1}"
else
echo "ERROR! Could not find gvfs-open or gio to open ${1}"
fi
|