当只有`read(2)`出现在Bash中的`whatis`时,如何看到`read`命令的手册页?

Shu*_*eng 3 linux bash shell ubuntu

在Ubuntu Linux 16.04 LTS上,我想看到read用于命令的手册页,例如,将输入拆分为Bash shell中的数组.

但是,该whatis命令仅显示以下信息:

nlykkei@nlykkei-Ubuntu:~$ whatis read
read (2)             - read from a file descriptor
Run Code Online (Sandbox Code Playgroud)

但是read(2)手册页的部分仅记录系统调用(以及相关的C函数).

如何阅读read终端中使用的命令的手册页?

Cyr*_*rus 6

read是一个bash buitin命令.见:type readhelp read

如果你想help read在手册页样式中看到:help -m read | less