Saya memiliki file Apache
log,, access.log
bagaimana cara menghitung jumlah kemunculan baris dalam file itu? misalnya hasil dari cut -f 7 -d ' ' | cut -d '?' -f 1 | tr '[:upper:]' '[:lower:]'
is
a.php
b.php
a.php
c.php
d.php
b.php
a.php
hasil yang saya inginkan adalah:
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
bisa melakukan itu ..
| sort | uniq -c