/usr/share/fish/man/man1/popd.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 | .TH "popd" 1 "Sun Dec 11 2016" "Version 2.4.0" "fish" \" -*- nroff -*-
.ad l
.nh
.SH NAME
\fBpopd\fP -- move through directory stack
.PP
.SS "Synopsis"
.PP
.nf
\fBpopd\fP
.fi
.PP
.SS "Description"
\fCpopd\fP removes the top directory from the directory stack and changes the working directory to the new top directory\&. Use \fC\fCpushd\fP\fP to add directories to the stack\&.
.SS "Example"
.PP
.nf
\fBpushd\fP /usr/src
Working directory is now /usr/src
Directory stack contains /usr/src
.fi
.PP
.PP
.PP
.nf
\fBpushd\fP /usr/src/fish-shell
Working directory is now /usr/src/fish-shell
Directory stack contains /usr/src /usr/src/fish-shell
.fi
.PP
.PP
.PP
.nf
\fBpopd\fP
Working directory is now /usr/src
Directory stack contains /usr/src
.fi
.PP
|