This file is indexed.

/usr/share/freemat/help/text/cd.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
CD CD Change Working Directory Function

Usage

Changes the current working directory to the one specified as the argument.  The general syntax for its use is

  cd('dirname')

but this can also be expressed as

  cd 'dirname'

or 

  cd dirname

Examples of all three usages are given below.
Generally speaking, dirname is any string that would be accepted 
by the underlying OS as a valid directory name.  For example, on most 
systems, '.' refers to the current directory, and '..' refers 
to the parent directory.  Also, depending on the OS, it may be necessary 
to ``escape'' the directory seperators.  In particular, if directories 
are seperated with the backwards-slash character '\\', then the 
path specification must use double-slashes '\\\\'. Note: to get 
file-name completion to work at this time, you must use one of the 
first two forms of the command.