ChinaUnix.net
相关文章推荐:

linux sort

CentOS4.2,新装的系统,想统计一下数据,但是运行sort出错 [code] [root@alfa alfa]# sort alfa.txt sort: sort.c:701:inittables_mb: 断言“mblength != (size_t)-1 && mblength != (size_t)-2”失败。 [/code] 有人遇到过没?应该怎么解决?

by alfa - Linux论坛 - 2006-12-21 15:22:48 阅读(2020) 回复(6)

相关讨论

linux sort对文件排序按照数值从大到小怎么排? 比如我的文件有两列数,对第二列从大到小怎么排?

by ecjtubaowp - Shell - 2008-09-03 15:53:35 阅读(11575) 回复(14)

[root@localhost test]# sort -t: +1 video.txt sort: open failed: +1: No such file or directory 我的系统是Fedora 10,是不是sort不再支持+n选项了? 备注sort的帮助: [root@localhost test]# sort --help Usage: sort [OPTION]... [FILE]... Write sorted concatenation of all FILE(s) to standard output. Mandatory arguments to long options are mandatory for short options too. Ordering options: -b, --ignore-...

by yanjin415 - Shell - 2009-03-04 09:54:41 阅读(3606) 回复(16)

怎样对第二列排序 10712 10.23.125.128 10713 10.22.236.8 10714 10.21.253.127 10715 10.23.2.242 10716 10.23.16.226 10717 10.23.38.61 10718 10.22.236.8 10719 10.21.164.104 10720 10.23.252.202 10721 10.21.29.74 10722 10.23.220.176 谢谢!

by gzhman - Shell - 2009-06-07 15:25:05 阅读(1485) 回复(8)

执行 sort -t: +3 test 后,为什么显示如下结果: sort: 打开失败: +3: 没有该文件或目录

by baijh - Shell - 2009-05-05 14:21:46 阅读(1115) 回复(2)

本来是发在python板块的,但没人回答,而且觉得可能跟shell有关系,就又发在这里了! 我有个一python程序,需要调用如下的sort命令: sort -t@ -rink1 /data1/admatch//datamanager/logAna//his//maxRate/stats/20080523/1_max_rate.dat.tmp -T /data2/search/.sortTmp/|head -n100 > /data1/admatch//datamanager/logAna//his//maxRate/stats/20080523/1_max_rate.dat python执行的时候经常会输出如下的错误: sort: write fai...

by fufeiwxy - Shell - 2008-05-28 17:52:22 阅读(1943) 回复(2)

按第二列排序,第五列保持不变 cat file1: 123,37,39,4,1 123,36,39,4,1 123,37,39,4,0 希望的排序结果: 123,36,39,4,1 123,37,39,4,1 123,37,39,4,0 Shell code:sort -t, +1n -4n 1 [ 本帖最后由 moog 于 2008-5-12 11:35 编辑 ]

by moog - Shell - 2008-05-12 11:52:39 阅读(1846) 回复(6)

提示$ sort 07272.sql >272.sql sort: missing NEWLINE added at end of input file 07272.sql

by wsryyffs66 - Shell - 2007-07-26 16:06:19 阅读(1416) 回复(1)

文件a e 9 e 5 d 3 d 2 a 1 a 0 如何让它变成 e 5 e 9 d 2 d 3 a 0 a 1 ---------------------------------------------------- 用sort 怎么写?

by llvs - Shell - 2007-07-19 15:39:55 阅读(1394) 回复(5)