我想按命令行根据字符代码或ASCII代码值对文本行进行排序。我尝试了以下命令行,但结果不是我的预期。
# string=" 8888888
>'
> Transportation
> Temp
>temp
>TEMP
> 99
> Temp
> Temporary"
# LC_ALL=C echo "$string" | sort
'
8888888
99
temp
Temp
Temp
TEMP
Temporary
Transportation
要根据ASCII码值进行排序,输出应该类似于
99
Temp
8888888
Temporary
Temp
Transportation
'
TEMP
temp
有谁知道怎么做?
答案 0 :(得分:30)
你已经搞错了程序。
echo "$string" | LC_ALL=C sort
使用$LC_COLLATE
也是可以接受的。