This file is indexed.

/usr/share/fish/man/man1/end.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
.TH "end" 1 "Sun Dec 11 2016" "Version 2.4.0" "fish" \" -*- nroff -*-
.ad l
.nh
.SH NAME
\fBend\fP -- end a block of commands\&. 

.PP
.SS "Synopsis"
.PP
.nf

\fBbegin\fP; [COMMANDS\&.\&.\&.] \fBend\fP
\fBif\fP CONDITION; COMMANDS_TRUE\&.\&.\&.; [\fBelse\fP; COMMANDS_FALSE\&.\&.\&.;] \fBend\fP
\fBwhile\fP CONDITION; COMMANDS\&.\&.\&.; \fBend\fP
\fBfor\fP VARNAME \fBin\fP [VALUES\&.\&.\&.]; COMMANDS\&.\&.\&.; \fBend\fP
\fBswitch\fP VALUE; [\fBcase\fP [WILDCARD\&.\&.\&.]; [COMMANDS\&.\&.\&.]; \&.\&.\&.] \fBend\fP
.fi
.PP
.SS "Description"
\fCend\fP ends a block of commands\&.
.PP
For more information, read the documentation for the block constructs, such as \fCif\fP, \fCfor\fP and \fCwhile\fP\&.
.PP
The \fCend\fP command does not change the current exit status\&.