4

我刚刚发现了什么,并想在我的 bash 脚本中添加信息。

将信息添加到 bash 脚本中的最佳方法是什么

  whatis

捡起?

4

1 回答 1

4

whatis从whatis 数据库中获取所有信息,该数据库是使用命令生成的makewhatis

有两种方法可以将条目添加到数据库中。

  1. 为您的程序或脚本创建并安装手册页,然后运行makewhatis​​.
  2. 手动编辑whatis 数据库。(不建议)

makewhatis从命令的手册页的NAME部分中选择第一行。

我机器上whatis 数据库的位置是/usr/share/man/whatis,这是它的样子..

ABORT(7)                 - abort the current transaction
ALTER_AGGREGATE(7)       - change the definition of an aggregate function
ALTER_COLLATION(7)       - change the definition of a collation
ALTER_CONVERSION(7)      - change the definition of a conversion
...
ping(8)                  - send ICMP ECHO_REQUEST packets to network hosts
...

这是输出man ping

NAME
     ping -- send ICMP ECHO_REQUEST packets to network hosts

SYNOPSIS
     ping [-AaCDdfnoQqRrv] [-b boundif] [-c count] [-G sweepmaxsize]
于 2013-06-24T00:21:20.683 回答