sort命令和对中文的处理
Posted yaoyaohust
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sort命令和对中文的处理相关的知识,希望对你有一定的参考价值。
使用示例:sort -k1,1nr xxxfile
需要指定起始列和结束列,否则可能排序错误
sort命令应用于中文时需要在sort前设置环境变量(以兼容C语言的标准):
LC_COLLATE=C
否则sort将忽略文本中的标点符号,将仅有标点符号差异的key看做相同。
使用tab做分隔符:
sort -t$‘ ‘
Shuffling the lines of a large file
sort -R [input-file] > [output-file]
参考:
http://www.gnu.org/software/coreutils/faq/#Sort-does-not-sort-in-normal-order_0021
http://stackoverflow.com/questions/5909404/sort-not-sorting-as-expected-space-and-locale
以上是关于sort命令和对中文的处理的主要内容,如果未能解决你的问题,请参考以下文章