Der Befehl sucht Zeilen mit „abcdef“ in der Protokolldatei, extrahiert die Adresse am Zeilenanfang und zählt deren Vorkommen.
cat /var/log/httpd/access | \ grep abcdef | \ cut -d' ' -f1 | \ sort | uniq -c | sort -rn |
Der Befehl sucht Zeilen mit „abcdef“ in der Protokolldatei, extrahiert die Adresse am Zeilenanfang und zählt deren Vorkommen.
cat /var/log/httpd/access | \ grep abcdef | \ cut -d' ' -f1 | \ sort | uniq -c | sort -rn |