From 80706806e68cf332646e2713bd8e05e109bd0e55 Mon Sep 17 00:00:00 2001 From: Zouhair AMAZZAL <44241862+zamazzal@users.noreply.github.com> Date: Fri, 9 Dec 2022 10:28:58 +0100 Subject: [PATCH] docs(find-files): explain what everything means and all files in the exercise Instructions --- subjects/devops/find-files/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subjects/devops/find-files/README.md b/subjects/devops/find-files/README.md index 8cc221ed..3bc0b081 100644 --- a/subjects/devops/find-files/README.md +++ b/subjects/devops/find-files/README.md @@ -6,8 +6,8 @@ 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` +everything (Regular file, Directory file, Link file,...) that starts with an `a` or, +all Regular file ending with a `z` - You can use this for testing: https://assets.01-edu.org/devops-branch/find-files-example.zip @@ -47,4 +47,4 @@ 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 +> Google and Man will be your friends!