Find Commands
From Cramsession
✍️ Verified Author: Mflavell • Click to view professional profile & credentials
Files in current folder modified today
find . mtime -1 type f printf "%f\n"
'-1 can be changed to another value to o back further'
Recursive find
find . -iname "fidnme*"
Find a file that starts with name_
find . -type f -name "name_*"