This file is indexed.

/usr/lib/s9fes/help/sys_pipe 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
14
15
16
17
18
19
S9 EXT  (sys:pipe)  ==>  list

Create a Unix pipe (a FIFO structure) and return a list containing
two file descriptors (integers) for accessing it:

        (read-descriptor write-descriptor)

All data written to the write-descriptor will subsequently
appear on the read-descriptor. Use the SYS:MAKE-INPUT-PORT and
SYS:MAKE-OUTPUT-PORT procedures to turn file descriptors into
I/O ports.

(let* ((p   (sys:pipe))
       (in  (sys:make-input-port (car p)))
       (out (sys:make-output-port (cadr p))))
  (display "foo" out)
  (newline out)
  (sys:flush out)
  (read in))                               ==>  foo