This file is indexed.

/usr/bin/spydr is in yorick-spydr 0.8.2-3.

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
#!/bin/sh
which rlwrap 2>&1 > /dev/null
if [ "$?" -eq "0" ]; then
    rlwrap yorick -i spydr.i $*
else
    yorick -i spydr.i $*
fi