From 6134cba9dcc63fceb14f582d09dcc8b52296dfac Mon Sep 17 00:00:00 2001 From: lucky-vers Date: Sat, 21 Oct 2023 21:54:33 +0530 Subject: [PATCH] Remove unnecessary \* --- Writeup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Writeup.md b/Writeup.md index 793d202..883534e 100644 --- a/Writeup.md +++ b/Writeup.md @@ -163,7 +163,7 @@ The arguments are as follows - `.` indicates that we want `find` to search in the current directory. - `-type f` is to make it so the only results we see are of files `f`. If we wanted to find only directories, we would use `-type d` instead. - `-size 1033c` filters the results to files that are only 1033 (`1033`) bytes (`c`) large. -- `! -executable` is a negation of the `-executable` argument, i.e. *"only show files that are \*not\* (`!`) executable"* +- `! -executable` is a negation of the `-executable` argument, i.e. *"only show files that are not (`!`) executable"* The results of the command are as follows.