Tôi có Apache
logfile, access.log
làm thế nào để đếm số lần xuất hiện dòng trong tệp đó? ví dụ kết quả cut -f 7 -d ' ' | cut -d '?' -f 1 | tr '[:upper:]' '[:lower:]'
là
a.php
b.php
a.php
c.php
d.php
b.php
a.php
kết quả mà tôi muốn là:
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
có thể làm điều đó ..
| sort | uniq -c