9

Tip #88   a better cut

use `grep -o` to select only the pattern matched rather than the whole line:


grep -o 'GET [^ ]\+ ' /var/log/httpd_access.log | sort | uniq -c | sort -n | head -n 100 > top100