This file is indexed.

/usr/share/elmerpost/help/matc/node2.html is in elmer-common 6.1.0.svn.5396.dfsg-2ubuntu1.

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
51
52
53
54
55
56
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<!--Converted with LaTeX2HTML 96.1-d (Mar 10, 1996) by Nikos Drakos (nikos@cbl.leeds.ac.uk), CBLU, University of Leeds -->
<HTML>
<HEAD>
<TITLE>MATC general flow control structures</TITLE>
<META NAME="description" CONTENT="MATC general flow control structures">
<META NAME="keywords" CONTENT="kirja">
<META NAME="resource-type" CONTENT="document">
<META NAME="distribution" CONTENT="global">
<LINK REL=STYLESHEET HREF="kirja.css">
</HEAD>
<BODY LANG="EN">
 <A NAME="tex2html74" HREF="node3.html"><IMG WIDTH=37 HEIGHT=24 ALIGN=BOTTOM ALT="next" SRC="lh-figs/next_motif.gif"></A> <A NAME="tex2html72" HREF="kirja.html"><IMG WIDTH=26 HEIGHT=24 ALIGN=BOTTOM ALT="up" SRC="lh-figs/up_motif.gif"></A> <A NAME="tex2html66" HREF="node1.html"><IMG WIDTH=63 HEIGHT=24 ALIGN=BOTTOM ALT="previous" SRC="lh-figs/previous_motif.gif"></A>   <BR>
<B> Next:</B> <A NAME="tex2html75" HREF="node3.html">MATC Operators</A>
<B>Up:</B> <A NAME="tex2html73" HREF="kirja.html">MATC Matrix Languge</A>
<B> Previous:</B> <A NAME="tex2html67" HREF="node1.html">MATC Variables</A>
<BR> <P>
<H1><A NAME="SECTION00200000000000000000">MATC general flow control structures</A></H1>
<P>
The syntax of the flow control structures of MATC are given below.
<P>
<PRE>if ( expr ) expr; else expr;
if ( expr )
{
    expr;
    ...
    expr;
} else {
    expr;
    ...
    expr;
}

for( i=vector ) expr;
for( i=vector )
{
    expr;
    ...
    expr;
}

while( expr ) expr;
while( expr )
{
    expr;
    ...
    expr;
}</PRE>
<P>
<BR> <HR>
<P><ADDRESS>
<I>Juha Ruokolainen <BR>
Fri Feb 14 15:59:30 EET 1997</I>
</ADDRESS>
</BODY>
</HTML>