I have a simple data set. example:
IP address,number of times it appears
192.168.0.10,11
192.168.0.1,15
192.168.0.120,9
I want to use the sort command to sort these by the largest number of times the IP has been seen. the output should look like:
192.168.0.1,15
192.168.0.10,11
192.168.0.120,9