This file is indexed.

/usr/share/doc/kde/HTML/en/kubuntu/cli/man-help.html is in kubuntu-docs 12.04.0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<html><head><title>&#8220;Man&#8221; and Getting Help</title><link rel="stylesheet" type="text/css" href="help:/common/kde-default.css"><link rel="stylesheet" type="text/css" href="help:/common/kde-docs.css"><link rel="stylesheet" type="text/css" href="help:/common/kde-localised.css"><link rel="stylesheet" type="text/css" href="help:/common/kubuntu.css"><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><link rel="home" href="index.html" title="Introduction To The Command Line"><link rel="up" href="index.html" title="Introduction To The Command Line"><link rel="prev" href="options.html" title="Options"><link rel="next" href="cut-and-paste.html" title="Cutting and Pasting"><link rel="copyright" href="legal.html" title="Credits and License"><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><meta name="GENERATOR" content="KDE XSL Stylesheet V1.14 using libxslt"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div id="content"><div id="header"><div id="header_content"><div id="header_left"><div id="header_right"><img src="help:/common/top-kde.jpg" width="36" height="34"> <span class="quote">&#8220;<span class="quote">Man</span>&#8221;</span> and Getting Help</div></div></div></div><div class="navCenter"><table class="navigation"><tr><td class="prevCell"><a accesskey="p" href="options.html">Prev</a></td><td class="upCell"> </td><td class="nextCell"><a accesskey="n" href="cut-and-paste.html">Next</a></td></tr></table></div><div id="contentBody"><div class="sect1"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="man-help"></a><span class="quote">&#8220;<span class="quote">Man</span>&#8221;</span> and Getting Help</h2></div></div></div><p>
<span class="emphasis"><em><span class="emphasis"><em>command</em></span> --help</em></span> and 
<span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="command"><span class="command"><strong>man</strong></span></span> <span class="emphasis"><em>command</em></span> are the two most important
tools at the command line.
</p><p>
Virtually all commands understand the <span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="command"><span class="command"><strong>-h</strong></span></span> (or
<span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="command"><span class="command"><strong>--help</strong></span></span>) option, which will produce a short usage description
of the command and its options, then exit back to the command prompt. Type:
</p><pre class="screen">man -h</pre><p>
or
</p><pre class="screen">man --help</pre><p>
to see this in action.
</p><p>
Every command and nearly every application in <span class="trademark">Linux</span>&#8482; has 
a <abbr class="abbrev">man</abbr> (manual) file. It is as simple as typing <span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="command"><span class="command"><strong>man
command</strong></span></span> to bring up a longer manual entry for the specified command.
For example: </p><pre class="screen">man mv</pre><p> brings up the <span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="command"><span class="command"><strong>mv</strong></span></span> 
manual.
</p><p>
Move up and down the man file with the arrow keys, and quit back to the command
prompt with <span class="keycap"><strong>q</strong></span>.
</p><p>
</p><pre class="screen">man man</pre><p> brings up the manual entry for the 
<span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="command"><span class="command"><strong>man</strong></span></span> command, which is a good place to start.
</p><p>
</p><pre class="screen">man intro</pre><p> is especially useful. It displays the 
<span class="quote">&#8220;<span class="quote">introduction to user commands</span>&#8221;</span> which is a well-written, brief 
introduction to the <span class="trademark">Linux</span>&#8482; command line.
</p><p>
There are also <span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="command"><span class="command"><strong>info</strong></span></span> pages, which generally go into more
detail than <span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="command"><span class="command"><strong>man</strong></span></span> pages. Try: </p><pre class="screen">info info</pre><p> for 
the introduction to info pages.
</p><div class="sect2"><div class="titlepage"><div><div><h3 class="title"><a name="searching-for-man-files"></a>Searching for man files</h3></div></div></div><p>
If you aren't sure which command or application you need to use, you can search
the <span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="command"><span class="command"><strong>man</strong></span></span> files.
</p><p>
To search the <span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="command"><span class="command"><strong>man</strong></span></span> files for <span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="command"><span class="command"><strong>konsole</strong></span></span>, try:
</p><pre class="screen">man -k konsole</pre><p>
</p><div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Note</h3><p>
This is the same as the <span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="command"><span class="command"><strong>apropos</strong></span></span> command.
</p></div><p>
To search only the titles of your system's <span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="command"><span class="command"><strong>man</strong></span></span> files, try:
</p><pre class="screen">man -f kde</pre><p>
</p><div class="note" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Note</h3><p>
This is the same as the <span xmlns:doc="http://nwalsh.com/xsl/documentation/1.0" class="command"><span class="command"><strong>whatis</strong></span></span> command.
</p></div></div></div></div><div id="footer"><div class="navCenter"><table class="navigation"><tr><td class="prevCell"><a accesskey="p" href="options.html">Prev</a></td><td class="upCell"><a accesskey="h" href="index.html">Home</a></td><td class="nextCell"><a accesskey="n" href="cut-and-paste.html">Next</a></td></tr><tr><td class="prevCell">Options </td><td class="upCell"> </td><td class="nextCell"> Cutting and Pasting</td></tr></table></div><div id="footer_text"><br><a href="mailto:ubuntu-docs@lists.ubuntu.com" class="footer_email">
	  Ubuntu Documentation Project
        </a></div></div></div></body></html>