/usr/share/fish/man/man1/prevd.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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | .TH "prevd" 1 "Sun Dec 11 2016" "Version 2.4.0" "fish" \" -*- nroff -*-
.ad l
.nh
.SH NAME
\fBprevd\fP -- move backward through directory history
.PP
.SS "Synopsis"
.PP
.nf
\fBprevd\fP [ -l | --list ] [POS]
.fi
.PP
.SS "Description"
\fCprevd\fP moves backwards \fCPOS\fP positions in the history of visited directories; if the beginning of the history has been hit, a warning is printed\&.
.PP
If the \fC-l\fP or \fC--list\fP flag is specified, the current history is also displayed\&.
.PP
Note that the \fCcd\fP command limits directory history to the 25 most recently visited directories\&. The history is stored in the \fC$dirprev\fP and \fC$dirnext\fP variables which this command manipulates\&.
.SS "Example"
.PP
.nf
\fBcd\fP /usr/src
Working directory is now /usr/src
.fi
.PP
.PP
.PP
.nf
\fBcd\fP /usr/src/fish-shell
Working directory is now /usr/src/fish-shell
.fi
.PP
.PP
.PP
.nf
\fBprevd\fP
Working directory is now /usr/src
.fi
.PP
.PP
.PP
.nf
\fBnextd\fP
Working directory is now /usr/src/fish-shell
.fi
.PP
|