Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<p align="center">
<p> align="center">
<img src="https://cloud.githubusercontent.com/assets/2059754/24601246/753a7f36-1858-11e7-9d6b-7a0e64fb27f7.png" alt="bash logo"/>
</p>

Expand Down Expand Up @@ -155,17 +155,28 @@ Example:
$ file index.html
index.html: HTML document, ASCII text
```

### g. `find`
Find files in directory

```bash
find directory options pattern
```

Example:

```bash
# Case-sensitive search
$ find . -name README.md
$ find /home/user1 -name '*.png'

# Case-insensitive search
$ find /home/user1 -iname '*.png'
```

The `-name` option performs a case-sensitive search. If you are unsure about
the exact filename casing, use `-iname` to perform a case-insensitive search.

### h. `gunzip`
Un-compresses files compressed by gzip.
```bash
Expand Down Expand Up @@ -616,7 +627,7 @@ d
g
e
```

why so fucking complicate
### k. `tr`
Translate or delete characters

Expand Down