Linked Questions

Popular Questions

I have a CSV file like this:

bear,1
fish,20
tiger,4

I need to sort it from greatest to least number, based on what is found in the second column, e.g.:

fish,20
tiger,4
bear,1

How can the file be sorted in this way?

Related Questions