আমার Apache
লগফিল আছে access.log
, কীভাবে সেই ফাইলটিতে লাইন সংখ্যার সংখ্যা গণনা করব? উদাহরণস্বরূপ ফল cut -f 7 -d ' ' | cut -d '?' -f 1 | tr '[:upper:]' '[:lower:]'
হয়
a.php
b.php
a.php
c.php
d.php
b.php
a.php
যে ফলাফলটি আমি চাই তা হ'ল:
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
না যে এটি করতে পারে ..
| sort | uniq -c