How comes running man awk
gives No manual entry for awk
? I frankly have never personally installed Awk on my Archlinux systems, but I've just found on the current one, the last I installed, there's no man awk
, which is strange. man gawk
works fine, on the other hand.
Any clues?
Here's the version plus other possibly relevant outputs:
$ awk --version
GNU Awk 5.1.0, API: 3.0 (GNU MPFR 4.1.0, GNU MP 6.2.0)
Copyright (C) 1989, 1991-2020 Free Software Foundation.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/.
$ which awk
/usr/bin/awk
$ ls -l $(which awk)
lrwxrwxrwx 1 root root 4 Apr 15 07:38 /usr/bin/awk -> gawk
$ which gawk
/usr/bin/gawk
/etc/alternatives
. I guess you would have to symlink thegawk
man page to~/.local/share/man/
. – ctx Sep 06 '20 at 16:03