Ich habe eine Apache
Protokolldatei, access.log
wie wird die Anzahl der Zeilen in dieser Datei gezählt? das Ergebnis zum Beispiel cut -f 7 -d ' ' | cut -d '?' -f 1 | tr '[:upper:]' '[:lower:]'
ist
a.php
b.php
a.php
c.php
d.php
b.php
a.php
Das gewünschte Ergebnis ist:
3 a.php
2 b.php
1 d.php # order doesn't matter
1 c.php
| LC_ALL=C sort | LC_ALL=C uniq -c
uniq
das tun könnte ..
| sort | uniq -c