This file is indexed.

/usr/share/freemat/help/text/whos.mdc is in freemat-help 4.0-5.

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
WHOS WHOS Describe Currently Defined Variables With Memory Usage

Usage

Reports information on either all variables in the current context
or on a specified set of variables.  For each variable, the who
function indicates the size and type of the variable as well as 
if it is a global or persistent.  There are two formats for the 
function call.  The first is the explicit form, in which a list
of variables are provided:

  whos a1 a2 ...

In the second form

  whos

the whos function lists all variables defined in the current 
context (as well as global and persistent variables). Note that
there are two alternate forms for calling the whos function:

  whos 'a1' 'a2' ...

and

  whos('a1','a2',...)