{{tag>awk commands cli}} ====== awk commands ====== ===== Show how many requests per minute the server received ===== cat /var/log/nginx/access.log | awk -F ':' '{print $2":"$3}' | sort | uniq -c ====== Tested on ====== * Debian 10 * nginx ====== See also ====== * [[wiki:openssl_commands|Openssl commands]] ====== References ======