Skip to content

Commit b7a87a8

Browse files
ohmyhuskyAdnan Ahmed
authored and
Adnan Ahmed
committed
add basic find support (Idnan#21)
fixes#20
1 parent 089476e commit b7a87a8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ Clears content on window.
8787
<td><a href="#p-rm">rm</a></td>
8888
<td><a href="#q-tail">tail</a></td>
8989
<td><a href="#r-touch">touch</a></td>
90+
<td><a href="#s-find">find</a></td>
9091
</tr>
9192
</table>
9293

@@ -236,6 +237,17 @@ Example:
236237
$ touch trick.md
237238
```
238239

240+
### s. `find`
241+
Find files in directory
242+
```bash
243+
find directory options pattern
244+
```
245+
Example:
246+
```bash
247+
$ find . -name README.md
248+
$ find /home/user1 -name '*.png'
249+
```
250+
239251
## 1.2. Text Operations
240252

241253
<table>

0 commit comments

Comments
 (0)