This file is indexed.

/usr/share/doc/libplplot11/examples/lua/plplot_examples.lua is in libplplot-dev 5.9.9-2ubuntu2.

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
 8
 9
10
11
12
-- initialise Lua bindings for PLplot examples.
if string.sub(_VERSION,1,7)=='Lua 5.0' then
	lib=loadlib('/usr/lib/lua/5.1/plplot/plplotluac.so','luaopen_plplotluac') or
      loadlib('/usr/lib/lua/5.1/plplot/plplotluac.dll','luaopen_plplotluac') or
      loadlib('/usr/lib/lua/5.1/plplot/plplotluac.dylib','luaopen_plplotluac')
	assert(lib)()
else
	package.cpath = '/usr/lib/lua/5.1/plplot/?.so;' ..
                  '/usr/lib/lua/5.1/plplot/?.dll;' ..
                  '/usr/lib/lua/5.1/plplot/?.dylib;' ..package.cpath
	require('plplotluac')
end