This file is indexed.

/usr/bin/tviewer is in python-mmtk 2.7.9-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
#! /usr/bin/python

from MMTK.Tools.TrajectoryViewer.TrajectoryViewer import TrajectoryViewer
import sys
if len(sys.argv) < 2:
    sys.stderr.write('No trajectory specified\n')
    sys.exit()
for trajectory in sys.argv[1:]:
    TrajectoryViewer(None, trajectory)