Skip to content

Instantly share code, notes, and snippets.

@DrAzraelTod
Created January 18, 2012 13:02
Show Gist options
  • Save DrAzraelTod/1632910 to your computer and use it in GitHub Desktop.
Save DrAzraelTod/1632910 to your computer and use it in GitHub Desktop.
Last 404s
#!/bin/bash
while [ 1 ]
do
clear;
echo "Last 404s:";
grep -i "404" /var/log/nginx/localhost.access_log | grep -v ' "-" "-"' | grep -v "favicon.ico" | grep -v "robots.txt" | grep -v "apple-touch-icon" | grep -v ' "-" "Java' | grep -v ' "-" "libwww' |tail -n 70;
sleep 200;
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment