theshell.ch/site/pages/cmd/basic/4-man.html
bevilj a6515acdb9 order pages for navigation
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@254 a672b425-5310-4d7a-af5c-997e18724b81
2018-11-18 20:38:56 +00:00

30 lines
816 B
HTML

---
layout: page
category-page: basic
category-title: Basic commands
tags: manual
author: Gianmarco De Vita
title: man
previous-page: pages/cmd/basic/3-ls.html
next-page: pages/cmd/basic/5-open.html
---
The <code>man</code> tool allows you to explore the various utilities
of the Shell. To search for more information about a command, just write</p>
<pre>
man command-name
</pre>
As result, a new session will be opened with information about the command
you have typed (and more specifically about its functions and flags).<br>
Using some flags, you can obtain with this command the same results you get
when you use other commands.<br><br>
<h3>Flags</h3>
<ul>
<li> <b>-k</b>: returns the equivalent of <code>apropos</code></li>
<li> <b>-f</b>: returns the equivalent of <code>whatis</code></li>
</ul>