I'm trying to parse apache log and print log entires generated in last n number of minutes
Sample of my access log data is here and this is what I have tried so far:
update The following solution works
awk -vDate=$(date -d'now-10 minutes' +[%d/%b/%Y:%H:%M:%S) '$4 > Date {print Date, $0}' access.log