This file is indexed.

/usr/lib/s9fes/help/sys_dup 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
S9 EXT  (sys:dup integer)             ==>  integer
        (sys:dup2 integer1 integer2)  ==>  integer

SYS:DUP duplicates an existing file descriptor INTEGER and returns
the new descriptor. Both desciptors can then be used to manipulate
the same file. All operations affecting one of them also affects
the other.

In calls to SYS:DUP2, the new descriptor can be specified explicitly
in the INTEGER2 argument.

(define (redirect-to-file file)
  (sys:dup2 (sys:creat "transcript-file") 1))