This file is indexed.

/usr/share/doc/gri/html/example7.html is in gri-html-doc 2.12.23-9build2.

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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<html>
<head>
<title>example7.gri</title>
</head>
<body bgcolor="#FFFFFF">
<i># This html document was prepared by gri2html based on the Gri script named</i>
<br><i>#    <a href="example7.gri">example7.gri</a></i>
<br># <i>Gri is available for free at <a href="http://gri.sourceforge.net">http://gri.sourceforge.net</a></i>
<pre>
<font color=#B22222># Example 7 -- Box plots of mixing efficiency vs density ratio (meddy)</font>

<font color=#0000EE>`Draw y boxplot from<font color=#0000EE> \file</font> at<font color=#CDAD00> .x.</font>'</font>
/*
Draw a y boxplot for data in given file, at given 
value of x.
*/
{
    open <font color=#CDAD00>\.word4.</font>
    read columns * y
    close
    draw y box plot at <font color=#CDAD00>\.word6.</font>
}
<font color=#9400D3>if</font> !<font color=#006400>..publication..</font>
    draw time stamp
<font color=#9400D3>end if</font>
set x axis 1 3 1 0.1
set x name <font color=#2F4F4F>"Density Ratio, $R_\rho$"</font>
set x margin 4
set y axis -2 1 1
<font color=#B22222>#</font>
<font color=#B22222># Must fool gri into not drawing the axes, because the y data</font>
<font color=#B22222># are already in logspace.</font>
draw axes none
Draw y boxplot from example7a.dat at 1.3
Draw y boxplot from example7b.dat at 1.4
Draw y boxplot from example7c.dat at 1.5
Draw y boxplot from example7d.dat at 1.6
Draw y boxplot from example7e.dat at 1.7
Draw y boxplot from example7f.dat at 1.8
Draw y boxplot from example7g.dat at 1.9
delete y scale
set y name <font color=#2F4F4F>"Efficiency, $\Gamma$"</font>
set y type log
set y axis 0.01 10 1
draw axes
draw title <font color=#2F4F4F>"Example 7 -- Box plot"</font>

</pre>
</body>
</html>