/usr/share/fish/man/man1/eval.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 | .TH "eval" 1 "Sun Dec 11 2016" "Version 2.4.0" "fish" \" -*- nroff -*-
.ad l
.nh
.SH NAME
\fBeval\fP -- evaluate the specified commands
.PP
.SS "Synopsis"
.PP
.nf
\fBeval\fP [COMMANDS\&.\&.\&.]
.fi
.PP
.SS "Description"
\fCeval\fP evaluates the specified parameters as a command\&. If more than one parameter is specified, all parameters will be joined using a space character as a separator\&.
.SS "Example"
The following code will call the ls command\&. Note that \fCfish\fP does not support the use of shell variables as direct commands; \fCeval\fP can be used to work around this\&.
.PP
.PP
.nf
\fBset\fP cmd ls
\fBeval\fP $cmd
.fi
.PP
|