/usr/bin/letodms is in letodms 3.2.1+dfsg-1.
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 | #!/bin/sh
WWW=`cat /etc/letodms/letodms.conf`
if [ "$1" ]; then WWW="$1" ; fi
if [ -x /usr/bin/sensible-browser ]; then
/usr/bin/sensible-browser $WWW
else
echo "Error: Does not exists local browser installed"
fi
|