Using httpry when checking for 5xx errors on a http server - Wed, Jan 29, 2014
httpry -i eth0 | grep -w "5[0-9]\{2\}"
Where eth0 is the network interface and grep is looking for the regex 5xx (x = 0-9)
httpry -i eth0 | grep -w "5[0-9]\{2\}"
Where eth0 is the network interface and grep is looking for the regex 5xx (x = 0-9)