Answers for "how to find files modified in last 10 days in linux"

0

find all files edited after date linux

find . -type f -newermt '1/30/2017 0:00:00'
Posted by: Guest on June-30-2020
0

linux find latest modified files

find . -type f -exec stat -c '%Y %n' {} \; | sort -nr | awk 'NR==1,NR==3 {print $2}'
Posted by: Guest on November-23-2021

Code answers related to "how to find files modified in last 10 days in linux"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language