find / -user username | more
find /home/david -name ‘index*’
find /home/david -iname ‘index*’
http://www.codecoffee.com/tipsforlinux/articles/21.html
Find String On File
grep -H -r “text-to-find” /directory
cari file hari ini
find . -mtime -1 \! -type d -exec ls -l {} \;