diff --git a/README.md b/README.md index 27afa2f..7a0bdca 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

+

align="center"> bash logo

@@ -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 @@ -616,7 +627,7 @@ d g e ``` - +why so fucking complicate ### k. `tr` Translate or delete characters