This file is indexed.

/usr/bin/rplan is in routeplanner 0.19+nmu1.

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
# -*- python -*-

import sys
sys.path.append('/usr/share/routeplanner')
import rpnewt

if len(sys.argv) > 1:
    rpnewt.mainloop(sys.argv[1])
else:
    rpnewt.mainloop()