据我所知,read
bash 包含许多参数,例如-a -d -e -r
。网页列出了 的所有参数read
。
read 的论点
在我的控制台中,man read
它不包含任何参数。我上传man read > read.txt
到 dropbox,请下载并验证。
答案1
为什么
man read
我的 debian 中不包含任何参数描述?
改用help read
。
read
是bash 内置命令. 要显示选项、说明,您应该使用命令help
。请参阅help help
或gnu 文档:
help
help [-dms] [pattern]
Display helpful information about builtin commands. If pattern is specified, help gives detailed help on all commands matching pattern, otherwise a list of the builtins is printed.
Options, if supplied, have the following meanings:
-d
Display a short description of each pattern
-m
Display the description of each pattern in a manpage-like format
-s
Display only a short usage synopsis for each pattern
答案2
參考文獻:https://en.wikipedia.org/wiki/Man_page#Manual_sections
请注意 - 中的 2 READ(2)
,它表示您正在查看手册页第 2 部分的内容。
根据您使用的操作系统,部分内容可能会有所不同。请参阅上面链接的维基百科页面。
您展示的内容是“read()”函数,来自基本的“C”计算机编程语言(已存在于K&R C中)。
您所追求的“读取”可以在“man bash”中描述,或者(如 man bash 中所述)通过“help read”简洁地描述。
您还可以在以下 Bash 指南中找到有关 bash 的大部分内容http://www.tldp.org/(冗长的文字,大量的例子)。