mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 15:15:29 +02:00
find: improve -mtime example (#1520)
This commit is contained in:
commit
a51871adf4
1 changed files with 2 additions and 2 deletions
|
@ -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:
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue