Cuando intento obtener información sobre apropos
Me sale lo siguiente:
$ which apropos
/usr/bin/apropos
$ apropos --version
apropos from man-1.6g
He intentado apropos -r '^report
pero me da un error:
$ apropos -r '^report'
apropos: -r: unknown option
El man
La página sobre apropos es muy sencilla:
apropos(1) apropos(1)
NAME
apropos - search the whatis database for strings
SYNOPSIS
apropos keyword ...
DESCRIPTION
apropos searches a set of database files containing short descriptions of system commands for key-
words and displays the result on the standard output.
...
El comando anterior funciona en Ubuntu/Linux.
No estoy seguro si es por el MacOS apropos
¿BSD?
¿Hay alguna forma de instalar un sistema compatible con Linux? apropos
?
En Ubuntu/Multipass, obtengo lo siguiente. El man
tiene todas las opciones:
ubuntu@shin-instance:~$ which apropos
/usr/bin/apropos
ubuntu@shin-instance:~$ apropos --version
apropos 2.9.1
$ man apropos
APROPOS(1) Manual pager utils APROPOS(1)
NAME
apropos - search the manual page names and descriptions
SYNOPSIS
apropos [-dalv?V] [-e|-w|-r] [-s list] [-m system[,...]] [-M path] [-L locale] [-C file] keyword ...
DESCRIPTION
Each manual page has a short description available within it. apropos searches the descriptions for in
stances of keyword.
...
OPTIONS
-d, --debug
Print debugging information.
-v, --verbose
Print verbose warning messages.
-r, --regex
Interpret each keyword as a regular expression. This is the default behaviour. Each keyword will be
matched against the page names and the descriptions independently. It can match any part of either.
The match is not limited to word boundaries.
-w, --wildcard
...