/usr/bin/roarpluginapplication is in roarclients 1.0~beta11-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 9 10 11 12 13 | #!/bin/sh
_plugin=`basename "$0"`
if [ "$_plugin" = 'roarpluginapplication' ]
then
echo "$0: This script should not be run like this, see $_plugin(1) for details."
exit 1
fi
exec roarpluginrunner --run-as-application "$_plugin" "$@"
#ll
|