Your comments

Or a few of them :-)


- sort case-sensitive A-z (sort)

- sort case-sensitive z-A (sort -r)

- sort case-insensitive a-z (sort -f)

- sort case-insensitive z-a (sort -f -r)

- sort numerically 0-9 (sort -f -g)

- sort numerically 9-0 (sort -f -g -r)


Regards

As a workaround you (and I) can use os x services to sort text. At this web (http://www.macosxautomation.com/services/learn/tut03/index.html) is well-explained.


Regards