Eyeota interview question

How to parse Apache logs and find the host with maximum http requests?

Interview Answer

Anonymous

27 Jan 2021

tail http.log | awk -F' ' '{print $X}' | sort | uniq -c