This file is indexed.

/usr/share/fish/man/man1/continue.1 is in fish-common 2.4.0-1.

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
.TH "continue" 1 "Sun Dec 11 2016" "Version 2.4.0" "fish" \" -*- nroff -*-
.ad l
.nh
.SH NAME
\fBcontinue\fP -- skip the remainder of the current iteration of the current inner loop 

.PP
.SS "Synopsis"
.PP
.nf

LOOP_CONSTRUCT; [COMMANDS\&.\&.\&.;] \fBcontinue\fP; [COMMANDS\&.\&.\&.;] \fBend\fP
.fi
.PP
.SS "Description"
\fCcontinue\fP skips the remainder of the current iteration of the current inner loop, such as a \fCfor\fP loop or a \fCwhile\fP loop\&. It is usually added inside of a conditional block such as an \fCif\fP statement or a \fCswitch\fP statement\&.
.SS "Example"
The following code removes all tmp files that do not contain the word smurf\&.
.PP
.PP
.nf

\fBfor\fP i \fBin\fP *\&.tmp
    \fBif\fP \fBgrep\fP smurf $i
        \fBcontinue\fP
    \fBend\fP
    \fBrm\fP $i
\fBend\fP
.fi
.PP