diff --git a/find b/find index a02b1aa..465a97b 100644 --- a/find +++ b/find @@ -61,10 +61,7 @@ find . -type f -samefile MY_FILE_HERE 2>/dev/null find . -type f -exec chmod 644 {} \; # To find all files changed in last 2 days: -find . -type f -ctime -48h find . -type f -ctime -2 -# Or created in last 2 days: -find . -type f -Btime -2 # Or accessed in last 2 days: find . -type f -atime -2