This file is indexed.

/usr/lib/s9fes/help/append-to-output-file 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
S9 LIB  (append-to-output-file string)  ==>  output-port

Take a string naming an output file and return an output port
capable of writing characters to the that file. Characters
written to the port will be appended to the file. When the
file does not exist when this procedure is called, it will
be created. If the file cannot be opened, an error is signalled.

(append-to-output-file "logfile")  ==>  #<output-port>