2018-11-15 22:29:42 +00:00
|
|
|
---
|
|
|
|
layout: page
|
|
|
|
category-page: intermediate
|
2018-11-16 12:47:48 +00:00
|
|
|
category-title: Intermediate commands
|
2018-11-15 22:29:42 +00:00
|
|
|
author: Joy Albertini
|
2018-11-16 10:14:54 +00:00
|
|
|
tags: search tag apropos keyword
|
2018-11-15 22:29:42 +00:00
|
|
|
title: apropos
|
|
|
|
---
|
|
|
|
|
2018-11-16 19:47:01 +00:00
|
|
|
The <code>apropos</code> command is used to search command in the shell with a keyword,
|
|
|
|
it will output all command related to the keyword <br>
|
|
|
|
|
|
|
|
Example with the command <code>apropos archive</code>, the shell will output tar, zip ecc...<br>
|
2018-11-15 22:29:42 +00:00
|
|
|
|
|
|
|
<pre>
|
2018-11-16 19:47:01 +00:00
|
|
|
apropos [flags] keyword
|
2018-11-15 22:29:42 +00:00
|
|
|
</pre>
|
|
|
|
|
2018-11-16 19:47:01 +00:00
|
|
|
<h3>Flags</h3>
|
|
|
|
|
2018-11-16 10:14:54 +00:00
|
|
|
<ul>
|
|
|
|
<li><code>-V</code> (version) print version of the comnmand<br></li>
|
|
|
|
<li><code>-h</code> Help message how to use apropos</li>
|
|
|
|
</ul>
|