This file is indexed.

/usr/lib/s9fes/help/minus is in scheme9 2010.11.13-2.

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
13
R4RS 6.5.5  (- number ...)  ==>  number
            (/ number ...)  ==>  number

With two or more arguments, these procedures return the difference
or quotient of their arguments, associating to the left. With one
argument, however, they return the additive or multiplicative inverse
of their argument.

(- 3 4)    ==>  -1
(- 3 4 5)  ==>  -6
(- 3)      ==>  -3
(/ 3 4 5)  ==>  0.15
(/ 4)      ==>  0.25