I've got a huge textfile which contains IP addresses:
123.33.22.33
221.23.128.2
123.33.22.33
92.222.192.12
92.222.192.12
123.33.22.33
I can sort it to:
123.33.22.33
123.33.22.33
123.33.22.33
221.23.128.2
92.222.192.12
92.222.192.12
and see (with bare eye) that first IP occurs three times, second once, and last one twice.
I'd like to be able to do this in huge logfiles, obviously in an automated way. Is it possible?
thanks