Sort “find” results by date:
1 |
find . -type f -printf "%T@\t%Tc %6k KiB %p\n" | sort -n | cut -f 2- |
Find files newer then a specific file:
1 |
find . -type f -newer somefile.txt |
And combined:
1 |
find . -type f -newer somefile.txt -printf "%T@\t%Tc %6k KiB %p\n" | sort -n | cut -f 2- |