/usr/bin/sushi is in gnome-sushi 0.4.1-0ubuntu1.
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 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | #!/bin/bash
if test x"$GJS_PATH" = x ; then
export GJS_PATH=/usr/share/sushi/js
else
export GJS_PATH=/usr/share/sushi/js:$GJS_PATH
fi
if test x"$GI_TYPELIB_PATH" = x ; then
export GI_TYPELIB_PATH=/usr/lib/sushi/girepository-1.0
else
export GI_TYPELIB_PATH=/usr/lib/sushi/girepository-1.0:$GI_TYPELIB_PATH
fi
if test x"$LD_LIBRARY_PATH" = x ; then
export LD_LIBRARY_PATH=/usr/lib/sushi
else
export LD_LIBRARY_PATH=/usr/lib/sushi:$LD_LIBRARY_PATH
fi
if test x"$GJS_DEBUG_OUTPUT" = x ; then
export GJS_DEBUG_OUTPUT=stderr
fi
if test x"$GJS_DEBUG_TOPICS" = x ; then
export GJS_DEBUG_TOPICS="JS ERROR;JS LOG"
fi
/usr/lib/gnome-sushi/sushi-start
|