This file is indexed.

/usr/share/games/gltron/scripts/basics.lua is in gltron 0.70final-12ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
function script_print(...)
   write("[script] ")
   for i=1,arg.n do
      write(arg[i])
   end
   write("\n")
end