Skip to content

Commit

Permalink
find: improve -mtime example (tldr-pages#1520)
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrl authored Oct 6, 2017
2 parents c063dbf + b0b4404 commit a51871a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/common/find.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@

`find {{root_path}} -name '{{*.ext}}' -exec {{wc -l {} }}\;`

- Find files modified since a certain time:
- Find files modified in the last 24-hour period:

`find {{root_path}} -name '{{}}' -mtime {{-1}}`
`find {{root_path}} -mtime {{-1}}`

- Find files using case insensitive name matching, of a certain size:

Expand Down

0 comments on commit a51871a

Please sign in to comment.