Add the explanation for -size

This commit is contained in:
lucky-vers 2023-10-21 16:36:12 +05:30
parent f238f084bd
commit 3d48361497

View file

@ -155,6 +155,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"*
The results of the command are as follows.
@ -176,6 +177,8 @@ P4L4vucdmLnm8I7Vl7jG1ApGSfjYKqJU
```
The password is revealed to be `P4L4vucdmLnm8I7Vl7jG1ApGSfjYKqJU`.