From 2a6413cea458333d509f53db8e6bbf4c818de686 Mon Sep 17 00:00:00 2001 From: Christopher Fremond <34804391+Frenchris@users.noreply.github.com> Date: Mon, 9 Aug 2021 15:34:30 +0100 Subject: [PATCH] Update README.md --- subjects/cl-camp5/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/subjects/cl-camp5/README.md b/subjects/cl-camp5/README.md index 5878a669..ef4970d6 100644 --- a/subjects/cl-camp5/README.md +++ b/subjects/cl-camp5/README.md @@ -9,15 +9,15 @@ Create a file `lookagain.sh`, which will look, from the current directory and it - all the files ending with `.sh`. That command will only show the name of the files without the `.sh`. -The files will be in ascending order (as shown in the below example). +The files will be in descending order (as shown in the below example). ### Usage ```console $ ./lookagain.sh | cat -e -file1$ -file2$ file3$ +file2$ +file1$ $ ```