1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-07 09:08:01 +00:00

Add Find Newer Files as a zsh til.

This commit is contained in:
jbranchaud
2015-08-26 10:43:35 -05:00
parent a783cac28a
commit 04ac7798b3
2 changed files with 14 additions and 0 deletions

13
zsh/find-newer-files.md Normal file
View File

@@ -0,0 +1,13 @@
# Find Newer Files
Use the `-newer` flag with the name of a file to find files that have a new
modification date than the named file.
For instance,
```
$ find blog -name '*.md' -newer blog/first-post.md
```
will find all markdown files in the `blog` directory that have a
modification date more recent than `blog/first-post.md`.