|
sort command - alphanumeric
I have a file I'm trying to sort such as
fred1
fred2
fred10
fred11
...
when I sort I get
fred1
fred10
fred11
fred2
...
using sort can any give me the syntax to sort this is dict order
e.g.,
fred1
fred2
fred10
fred11
I've done is in the past but can't for the life of me remember the syntax!
|