Update find.md (#1783)

* Update find.md

Example to look very detailed in the past using a before and after condition.

* Update find.md

Co-authored-by: kang <1115610574@qq.com>

---------

Co-authored-by: kang <1115610574@qq.com>
This commit is contained in:
Peter C. S. Scholtens 2023-01-31 09:57:10 +01:00 committed by GitHub
parent 6b4c9ef35d
commit 6afbde3c2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -66,7 +66,7 @@ These conditions only work in MacOS and BSD-like systems (no GNU/Linux support).
### Condition flow
```bash
\! -name "*.c"
\! -name "*.c" # NOT named "*.c"
\( x -or y \)
```
@ -91,4 +91,5 @@ find . -newerBt "24 hours ago"
```bash
find . -type f -mtime +29 # find files modified more than 30 days ago
find . -type f -newermt 2016-08-07 \! -newermt 2016-08-08 # find in date range
```