Remove unnecessary \*

This commit is contained in:
lucky-vers 2023-10-21 21:54:33 +05:30
parent ddb0079d58
commit 6134cba9dc

View file

@ -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.