i need to write a unix command to search count of 5XX status HTTP requests in the log. Log format is like below example : any suggestions ? Answer A minimal solution would be grep will filter the output to only the lines including the string 5XX, where X is any digit character. This output is then piped to wc