This file is indexed.

/usr/share/freemat/help/text/clear.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
27
28
29
30
31
32
33
34
35
36
CLEAR CLEAR Clear or Delete a Variable

Usage

Clears a set of variables from the current context, or alternately, 
delete all variables defined in the current context.  There are
several formats for the function call.  The first is the explicit form
in which a list of variables are provided:

   clear a1 a2 ...

The variables can be persistent or global, and they will be deleted.
The second form

   clear 'all'

clears all variables and libraries from the current context.  Alternately, you can
use the form:

   clear 'libs'

which will unload any libraries or DLLs that have been imported. 
Optionally, you can specify that persistent variables should be cleared via:

   clear 'persistent'

and similarly for global variables:

   clear 'global'

You can use

   clear 'classes'

to clear all definitions of user-defined classes.
With no arguments, clear defaults to clearing 'all'.