John regarding the sort issue which was happening. . I wrote to Linux org.
Here is the solution they gave.
To get the effect you want, set *LC_ALL="C"* in your environment. See:
This is what we have.
>set|grep LC
*LC_ALL=en_US*
MAILCHECK=600
I can set the environment , but need to confirm with
To get the effect you want, set LC_ALL="C" in your environment. See:
https://www.gnu.org/software/coreutils/manual/html_node/sort-invocation.html#FOOT2
This is my data which needs to be sort
01Sty01, AB
01Sty,Make
01Sty02,CD
Now i apply sort to the above file
result come as
01Sty01,AB
01Sty02,CD
01Sty,Make
I need to see as - This is the way it does in AIX
01Sty,Make
01Sty01,AB
01Sty02,CD
Any Suggestion.
sanjit - 248 249 0175