This file is indexed.

/usr/lib/s9fes/help/read-from-string 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
20
21
22
23
24
25
26
S9 LIB  (read-from-string string <option> ...)  ==>  object

Read a datum from a string. READ-FROM-STRING is like READ but it
takes its input from a string instead of a port. It returns a pair
containing the datum read in case of success. If there are any
trailing characters after the extracted datum, the trailing string
is placed in the cdr part of the returned pair. If the trailing
string is empty, the cdr part is set to (). When an empty string
or a string consisting of a comment exclusively is passed to
READ-FROM-STRING, it returns (). In case of an error, a string
explaining the cause of the error is returned.

When the 'CONVERT-UNREADABLE option with a non-#F value is passed
to READ-FROM-STRING, it will write the informal representation of
#<...> expressions to a string and include that string in the
resulting form in the place of the unreadable expression. By default
it will signal an error when an unreadable expression is found.

(read-from-string "  (this \"is\" #(a) (list)) ; comment")
  ==>  ((this "is" #(a) (list)))

(read-from-string "  (this \"is\" #(a) (list))  more text")
  ==>  ((this "is" #(a) (list)) . "  more text")

(read-from-string ")")
  ==>  "read-from-string: unexpected closing parenthesis"