/usr/share/fish/man/man1/break.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 32 33 | .TH "break" 1 "Sun Dec 11 2016" "Version 2.4.0" "fish" \" -*- nroff -*-
.ad l
.nh
.SH NAME
\fBbreak\fP -- stop the current inner loop
.PP
.SS "Synopsis"
.PP
.nf
LOOP_CONSTRUCT; [COMMANDS\&.\&.\&.] \fBbreak\fP; [COMMANDS\&.\&.\&.] \fBend\fP
.fi
.PP
.SS "Description"
\fCbreak\fP halts a currently running 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\&.
.PP
There are no parameters for \fCbreak\fP\&.
.SS "Example"
The following code searches all \&.c files for 'smurf', and halts at the first occurrence\&.
.PP
.PP
.nf
\fBfor\fP i \fBin\fP *\&.c
\fBif\fP \fBgrep\fP smurf $i
\fBecho\fP Smurfs are present in $i
\fBbreak\fP
\fBend\fP
\fBend\fP
.fi
.PP
|