Skip to content

Instantly share code, notes, and snippets.

@7rin0
Created May 1, 2017 15:07
Show Gist options
  • Save 7rin0/8bc78889e0316927db2320ea9e6a3582 to your computer and use it in GitHub Desktop.
Save 7rin0/8bc78889e0316927db2320ea9e6a3582 to your computer and use it in GitHub Desktop.
Find files by modified time
# Move found files modified the 5 minutes before, depth level 1, to "DIR" directory ...
mv $(find ./ -maxdepth 1 -mmin -5) DIR/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment