We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 089476e commit b7a87a8Copy full SHA for b7a87a8
README.md
@@ -87,6 +87,7 @@ Clears content on window.
87
<td><a href="#p-rm">rm</a></td>
88
<td><a href="#q-tail">tail</a></td>
89
<td><a href="#r-touch">touch</a></td>
90
+ <td><a href="#s-find">find</a></td>
91
</tr>
92
</table>
93
@@ -236,6 +237,17 @@ Example:
236
237
$ touch trick.md
238
```
239
240
+### s. `find`
241
+Find files in directory
242
+```bash
243
+find directory options pattern
244
+```
245
+Example:
246
247
+$ find . -name README.md
248
+$ find /home/user1 -name '*.png'
249
250
+
251
## 1.2. Text Operations
252
253
<table>
0 commit comments