From 0f95e0cefd6c1841d852c39157461be69d206dee Mon Sep 17 00:00:00 2001 From: lucky-vers Date: Sat, 21 Oct 2023 16:36:50 +0530 Subject: [PATCH] Add ! --- Writeup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Writeup.md b/Writeup.md index cf7157c..2f7dddc 100644 --- a/Writeup.md +++ b/Writeup.md @@ -156,7 +156,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.