This file is indexed.

/usr/share/freemat/help/text/addpath.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
ADDPATH ADDPATH Add 

Usage

The addpath routine adds a set of directories to the current path.
The first form takes a single directory and adds it to the beginning
or top of the path:

  addpath('directory')

The second form add several directories to the top of the path:

  addpath('dir1','dir2',...,'dirn')

Finally, you can provide a flag to control where the directories get
added to the path

  addpath('dir1','dir2',...,'dirn','-flag')

where if flag is either '-0' or '-begin', the directories are
added to the top of the path, and if the flag is either '-1' or 
'-end' the directories are added to the bottom (or end) of the path.