add basic find support (#21)

fixes#20
This commit is contained in:
Kim Chen 2017-04-05 15:44:49 +10:00 committed by Adnan Ahmed
parent 089476ea2f
commit b7a87a856a
1 changed files with 12 additions and 0 deletions

View File

@ -87,6 +87,7 @@ Clears content on window.
<td><a href="#p-rm">rm</a></td>
<td><a href="#q-tail">tail</a></td>
<td><a href="#r-touch">touch</a></td>
<td><a href="#s-find">find</a></td>
</tr>
</table>
@ -236,6 +237,17 @@ Example:
$ touch trick.md
```
### s. `find`
Find files in directory
```bash
find directory options pattern
```
Example:
```bash
$ find . -name README.md
$ find /home/user1 -name '*.png'
```
## 1.2. Text Operations
<table>