GNU 排序命令的行为(使用非字母 ASCII 字符,例如点或分号)
我希望 sort
命令平等对待所有字符。
例如,当我这样做时,
$ echo -e 'TEST.b\nTESTa\nTESTc' | sort
TESTa
TEST.b
TESTc
点被忽略。
我想在最后或第一个位置获得 TEST.b
。但是,我在手册页中找不到正确的参数。
(我的 sort
版本来自 GNU 核心实用程序)。
I want the sort
command to treat all characters equal.
For example, when I do
$ echo -e 'TEST.b\nTESTa\nTESTc' | sort
TESTa
TEST.b
TESTc
the dot is ignored.
I would like to get TEST.b
at the last or first position. However, I cannot find the proper parameter in the manual page.
(my version of sort
is from the GNU core utilities).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
强制对
C
进行排序以便比较原始字符值。Force collation to
C
in order to compare the raw character values.