Nothing beats a full stats package, but with a little grepping and a logfile and we can figure out some quick statistics. Get only hits coming from Google.com/search: grep ‘google.com/search’ access_log | head -1 Extract only the referrer field: grep ‘google.com/search’ access_log | head -1 | awk ‘{print $11}’ Get the search terms only: grep [...]