Finding files with find
find / -type f -size +20000k -exec ls -lh {} \; | awk '{ print $9 ": " $5 }' This finds and lists the largest files on /
find . -type f -printf '%TY-%Tm-%Td %TT %p\n' | sort This finds the most recently changed files under the current directory