automated terminal push
All checks were successful
code.softwareshinobi.com-learn/docker.softwareshinobi.com/pipeline/head This commit looks good
All checks were successful
code.softwareshinobi.com-learn/docker.softwareshinobi.com/pipeline/head This commit looks good
This commit is contained in:
32
docs/Linux-Commands/.recycle/016-the-whatis-command.md
Executable file
32
docs/Linux-Commands/.recycle/016-the-whatis-command.md
Executable file
@@ -0,0 +1,32 @@
|
||||
# The `whatis` command
|
||||
|
||||
The `whatis` command is used to display one-line manual page descriptions for commands.
|
||||
It can be used to get a basic understanding of what a (unknown) command is used for.
|
||||
|
||||
### Examples of uses:
|
||||
|
||||
1. To display what `ls` is used for:
|
||||
|
||||
```
|
||||
whatis ls
|
||||
```
|
||||
|
||||
2. To display the use of all commands which start with `make`, execute the following:
|
||||
|
||||
```
|
||||
whatis -w make*
|
||||
```
|
||||
|
||||
### Syntax:
|
||||
|
||||
```
|
||||
whatis [-OPTION] [KEYWORD]
|
||||
```
|
||||
|
||||
### Additional Flags and their Functionalities:
|
||||
|
||||
|**Short Flag** |**Long Flag** |**Description** |
|
||||
|:---|:---|:---|
|
||||
|`-d`|`--debug`|Show debugging messages|
|
||||
|`-r`|`--regex`|Interpret each keyword as a regex|
|
||||
|`-w`|`--wildcard`|The keyword(s) contain wildcards|
|
||||
Reference in New Issue
Block a user