From a60c16dcaf47a69496037eec3ef3b4b000d1e5fd Mon Sep 17 00:00:00 2001 From: Zouhair AMAZZAL Date: Fri, 9 Dec 2022 09:53:48 +0100 Subject: [PATCH] docs(find-files): fix grammer error --- subjects/devops/find-files/README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/subjects/devops/find-files/README.md b/subjects/devops/find-files/README.md index 04fd39c0..8cc221ed 100644 --- a/subjects/devops/find-files/README.md +++ b/subjects/devops/find-files/README.md @@ -7,7 +7,7 @@ Create a file `find-files.sh`, which will look for and show, in the current directory and its sub-folders: everything that starts with an `a` or, -all the files ending with a `z` or, +all the files ending with a `z` - You can use this for testing: https://assets.01-edu.org/devops-branch/find-files-example.zip @@ -43,7 +43,8 @@ $find ~/ \( -type f \) $ ``` -May you will need to use `pipe (|)` and `&&`. +You may need to use pipes `(|)` and the logical operator `&&`. + > You have to use Man or Google to know more about commands flags, in order to solve this exercise! > Google and Man will be your friends! \ No newline at end of file