2018-11-09 13:06:37 +00:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
category-page: basic
|
2018-11-16 12:47:48 +00:00
|
|
|
category-title: Basic commands
|
2018-11-09 13:06:37 +00:00
|
|
|
tags: manual
|
2018-11-11 15:50:16 +00:00
|
|
|
author: Gianmarco De Vita
|
2018-11-09 13:06:37 +00:00
|
|
|
title: man
|
2018-11-17 15:10:28 +00:00
|
|
|
previous-page: pages/cmd/basic/ls.html
|
|
|
|
next-page: pages/cmd/basic/open.html
|
2018-11-09 13:06:37 +00:00
|
|
|
---
|
2018-11-12 10:47:50 +00:00
|
|
|
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>
|
2018-11-09 13:06:37 +00:00
|
|
|
|
|
|
|
<pre>
|
2018-11-12 10:47:50 +00:00
|
|
|
man command-name
|
2018-11-09 13:06:37 +00:00
|
|
|
</pre>
|
|
|
|
|
2018-11-12 10:47:50 +00:00
|
|
|
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>
|
2018-11-09 13:06:37 +00:00
|
|
|
|
2018-11-12 10:47:50 +00:00
|
|
|
Using some flags, you can obtain with this command the same results you get
|
|
|
|
when you use other commands.<br><br>
|
2018-11-09 13:06:37 +00:00
|
|
|
|
2018-11-12 10:47:50 +00:00
|
|
|
<h3>Flags</h3>
|
2018-11-09 13:06:37 +00:00
|
|
|
|
2018-11-12 10:47:50 +00:00
|
|
|
<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>
|