代码:
#!\bin\bash
#################################
#Usage: sh parse.sh <input_file>
#
#example: sh parse.sh records.txt
#
#################################
if [ $# -lt 1 ] ; then
echo "Usage: sh parse.sh <input_file>"
exit 0
fi
while read line ; do
age=`echo $line | cut -f3 -d"|"`
first_name=`echo $line | cut -f1 -d"|"`
if [ $age -gt 18 ]; then
echo "$first_name is growup"
else
echo "$first_name is a child"
fi
done < $1
通过修改日志记录的格式,可以获取基于每个Request的各种信息,包括每个request消耗的时间,从哪儿来的等等,其日志格式支持的参数有:
%a - Remote IP address
%A - Local IP address
%b - Bytes sent, excluding HTTP headers, or '-' if zero
%B - Bytes sent, excluding HTTP headers
%h - Remote host name (or IP address if enableLookups for the connector is false)
%H - Request protocol
%l - Remote logical username from identd (always returns '-')
%m - Request method (GET, POST, etc.)
%p - Local port on which this request was received
%q - Query string (prepended with a '?' if it exists)
%r - First line of the request (method and request URI)
%s - HTTP status code of the response
%S - User session ID
%t - Date and time, in Common Log Format
%u - Remote user that was authenticated (if any), else '-'
%U - Requested URL path
%v - Local server name
%D - Time taken to process the request, in millis
%T - Time taken to process the request, in seconds
%F - Time taken to commit the response, in millis
%I - Current request thread name (can compare later with stacktraces)
%{xxx}i for incoming headers
%{xxx}o for outgoing response headers
%{xxx}c for a specific cookie
%{xxx}r xxx is an attribute in the ServletRequest
%{xxx}s xxx is an attribute in the HttpSession
%{xxx}t xxx is an enhanced SimpleDateFormat pattern