Personal blog of Ramon Fincken
ramon fincken
By.
•
min read
My profile
grep '\?add-to-cart' log.txt \ | awk '{print $1}' \ | sort | uniq -c | sort -nr | head
TO select above a threshold:
cat access.log | grep ' 429 ' | awk '{print $1}' | sort | uniq -cd | awk -v limit=900 '$1 > limit{print $2}'
Your email address will not be published. Required fields are marked *
Comment *
Name *
Email *
Website
Save my name, email, and website in this browser for the next time I comment.
Leave a Reply