Questions tagged «documentation»

供系统用户使用的手册或其他信息,详细介绍软件功能。

5
开放C函数的程序员手册在哪里?
我正在使用debian8(jessie),然后去阅读已打开的手册页。相反,我得到了警告: $ man 3 open No manual entry for open in section 3 See 'man 7 undocumented' for help when manual pages are not available. 我已经安装了manpage-dev软件包,那么程序员的manpage(man 3)在哪里打开?


2
cp的行为奇怪。(点)或..(点)是源目录
这个答案表明,可以将目录中的所有文件(包括隐藏文件)复制src到目录中,dest如下所示: mkdir dest cp -r src/. dest 答案或其注释中没有任何解释说明其为何真正起作用,并且似乎也没有人找到相关文档。 我尝试了几件事。一,正常情况: $ mkdir src src/src_dir dest && touch src/src_file src/.dotfile dest/dest_file $ cp -r src dest $ ls -A dest dest_file src 然后,/.最后: $ mkdir src src/src_dir dest && touch src/src_file src/.dotfile dest/dest_file $ cp -r src/. dest $ ls -A dest …


2
在哪里可以找到官方的POSIX和UNIX文档?
我正在寻找有关所有POSIX标准和规范的正式文档。我希望无法阅读这些文档,以更好地理解UNIX系统以及它们在较低级别如何工作。我在这里和那里都看到了指向opengroup.org的链接,我认为它是标准背后的实体(但是,我也听说过IEEE也提到过很多)。 有关POSIX的简要介绍,请参阅以下问题:POSIX到底是什么?它为我回答了很多问题。

1
我如何获得有关zsh内置的帮助消息?
如果我想获得内置bash的简短用法消息,可以help <builtin>在命令提示符下使用,例如 $ help export export: export [-fn] [name[=value] ...] or export -p Set export attribute for shell variables. Marks each NAME for automatic export to the environment of subsequently executed commands. If VALUE is supplied, assign VALUE before exporting. Options: -f refer to shell functions -n remove the export …



1
输入选项的完整列表
我想隐藏光标,并且知道tput命令。我确实搜索了其手册页。在搜索互联网时,我发现 $ tput civis # to hide the cursor $ tput cnorm # to bring back the cursor 这些可以完美地工作,但是手册页中没有提到这些选项。 他们在哪里正式记录?

2
wget手册页提到的用于阻止“自动检索程序”的“ 2001年文章”是什么?
该wget手册页指出这一点,下的部分--random-wait参数: Some web sites may perform log analysis to identify retrieval programs such as Wget by looking for statistically significant similarities in the time between requests. [...] A 2001 article in a publication devoted to development on a popular consumer platform provided code to perform this analysis on the fly. …

2
如何记录我的自定义bash函数和别名?
问题: 我有多个bash函数和别名。我不记得所有的人把我的头顶部,所以我通常最终会打开我.bash_functions和.bash_aliases档案找到我所需要的。 问题: 如何列出bash提示中的可用功能/别名? 我可以使用注释(如PHPDoc之类的)来记录bash函数/别名吗? 我只是想要一种简单/不错的方式来输出可用的内容而不必打开文件。运行命令并吐出我的函数/别名的动态列表会很酷(使用示例会是一个加号)。:)


2
`kill -p`真的有效吗?
在它的手册页中kill,内容如下 概要 kill [ -s signal | -p ] [ -a ] [ -- ] pid ... kill -l [ signal ] -p Specify that kill should only print the process id (pid) of the named processes, and not send any signals. 但是,由于我在RH和RHEL中都尝试了很多次,所以命令像kill -s SIGHUP |-p 123从未使用过,总是报告错误 bash:-p:找不到命令 我有没有犯错?

3
使用vim查看信息文档
我正在尝试使用ManPageView插件在中查看信息文档vim。 尽管我发现ManPageView对于查看手册页非常有用,但是它的信息读取功能似乎根本不起作用。但是后来我几乎从未阅读过信息文档,主要是因为花时间学习info界面似乎不值得。所以我可能做错了。 无论如何::Man info.i按照ManPageView文档的建议运行,这给了我 info: No menu item `(info)Top' in node `(dir)Top'. info: No menu item `(info)Top' in node `(dir)Top'. info: No menu item `(info)Top' in node `(dir)Top'. ***warning*** sorry, no manpage exists for <(info)Top> 如果删除以下行(从文件中的第345行开始),我会看到一些成功autoload/manpageview.vim: " special exception for info {{{3 if a:viamap == 0 && ext == "i" …

1
wpa-conf在哪里记录?
我用wpa-conf在/etc/network/interfaces使WLAN接口自动连接到AP: # This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). source /etc/network/interfaces.d/* # The loopback network interface auto lo iface lo inet loopback auto wlan0 iface wlan0 inet dhcp wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf 实际上,我只是在某个Wiki上发现了这一点。似乎没有在interfaces(5)或任何其他手册页中进行记录。 那么,什么是该wpa-conf关键字?一种扩展?还是内置的ifup?在哪里可以获得可以使用的所有命令的列表/etc/network/interfaces?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.