/usr/share/fish/man/man1/command.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 | .TH "command" 1 "Sun Dec 11 2016" "Version 2.4.0" "fish" \" -*- nroff -*-
.ad l
.nh
.SH NAME
\fBcommand\fP -- run a program
.PP
.SS "Synopsis"
.PP
.nf
\fBcommand\fP [OPTIONS] COMMANDNAME [ARGS\&.\&.\&.]
.fi
.PP
.SS "Description"
\fCcommand\fP forces the shell to execute the program \fCCOMMANDNAME\fP and ignore any functions or builtins with the same name\&.
.PP
The following options are available:
.PP
.IP "\(bu" 2
\fC-s\fP or \fC--search\fP returns the name of the disk file that would be executed, or nothing if no file with the specified name could be found in the \fC$PATH\fP\&.
.PP
.PP
With the \fC-s\fP option, \fCcommand\fP treats every argument as a separate command to look up and sets the exit status to 0 if any of the specified commands were found, or 1 if no commands could be found\&.
.PP
For basic compatibility with POSIX \fCcommand\fP, the \fC-v\fP flag is recognized as an alias for \fC-s\fP\&.
.SS "Examples"
\fCcommand ls\fP causes fish to execute the \fCls\fP program, even if an \fCls\fP function exists\&.
.PP
\fCcommand -s ls\fP returns the path to the \fCls\fP program\&.
|