Skip to content

Commit

Permalink
Update find.md (rstacruz#1783)
Browse files Browse the repository at this point in the history
* Update find.md

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

* Update find.md

Co-authored-by: kang <[email protected]>

---------

Co-authored-by: kang <[email protected]>
  • Loading branch information
peter-scholtens and kang8 authored Jan 31, 2023
1 parent 6b4c9ef commit 6afbde3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion find.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 \)
```

Expand All @@ -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
```

0 comments on commit 6afbde3

Please sign in to comment.