code:
find / -type f -exec ls -l {} \; cut -d ' ' -f 3 | sort | uniq -c | sort +0 -n
code:
find / -type f > tmp; while read l; do t=$(stat -atime $l); u=$(stat -uid $l); echo $t $u; done < tmp | sort +0 -nu | tail -2
code:
for l in $(find / -type f -mtime -1); do t=$(stat -mtime $l); u=$(stat -uid $l); echo $t $u $l; done | sort +0 -n