This file is indexed.

/usr/bin/edfviewer is in pymca 5.1.3+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
 9
10
11
#!/usr/bin/python

import os
import sys
import PyMca5.PyMcaGui.pymca.EdfFileSimpleViewer as target

fname = os.path.join(os.path.dirname(target.__file__), 'EdfFileSimpleViewer.py')
if sys.version < '3.0':
    execfile(fname)
else:
    exec(compile(open(fname).read(), fname, 'exec'))