I want the series to sort as 1,2,3,10,11,12 not 1,10,11,12,2,3. The sort functions do not seem to have any effect when used in this context:
... | sort -num(myfield)
I don't see any examples of using the sort functions in the documentation or other questions. 😞
I have also tried:
... | sort by num(myfield)
... | sort num(myfield)
Halp!
... View more