码迷,mamicode.com
首页 > 系统相关 > 详细

Linux Sort命令详解

时间:2018-06-26 11:06:37      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:tps   ott   ++   详解   ast   width   src   结果   格式   

sort:帮我们依据不同的数据类型进行排序,其语法及常用参数格式:
     sort [-bcfMnrtk][源文件][-o 输出文件]
            补充说明:sort可针对文本文件的内容,以行为单位来排序。       
        参  数:
          -b   忽略每行前面开始出的空格字符。
          -c   检查文件是否已经按照顺序排序。
          -f   排序时,忽略大小写字母。
          -M   将前面3个字母依照月份的缩写进行排序。
          -n   依照数值的大小排序。
          -o<输出文件>   将排序后的结果存入指定的文件。
          -r   以相反的顺序来排序。
          -t<分隔字符>   指定排序时所用的栏位分隔字符。
          -k  选择以哪个区间进行排序。

[root@localhost ~]# last|grep ‘192‘|awk ‘{S[$3]++} END{for(a in S) {print a,S[a]}}‘|sort -rn

技术分享图片

[root@localhost ~]# last|grep ‘192‘|awk ‘{S[$3]++} END{for(a in S) {print a,S[a]}}‘|sort -o /home/omc/sort.txt
      [root@localhost ~]# ll /home/omc/sort.txt
      -rw-r--r--. 1 root root 69 Jun 25 17:25 /home/omc/sort.txt

技术分享图片

Linux Sort命令详解

标签:tps   ott   ++   详解   ast   width   src   结果   格式   

原文地址:https://www.cnblogs.com/ftl1012/p/9227263.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!