• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    linux 操作系统 uniq命令的说明和使用

    uniq命令的作用:显示唯一的行,对于那些连续重复的行只显示一次!

    接下来通过实践实例说明:

    [root@stu100 ~]# cat test
    boy took bat home
    boy took bat home
    girl took bat home
    dog brought hat home
    dog brought hat home
    dog brought hat home

    看test文件的内容,可以看到其中的连续重复行

    [root@stu100 ~]# uniq test
    boy took bat home
    girl took bat home
    dog brought hat home

    uniq命令不加任何参数,仅显示连续重复的行一次

    [root@stu100 ~]# uniq -c test
    2 boy took bat home
    1 girl took bat home
    3 dog brought hat home

    -c 参数显示文件中每行连续出现的次数。

    [root@stu100 ~]# uniq -d test
    boy took bat home
    dog brought hat home

    -d选项仅显示文件中连续重复出现的行。

    [root@stu100 ~]# uniq -u test
    girl took bat home

    -u选项显示文件中没有连续出现的行。

    [root@stu100 ~]# uniq -f 2 -s 2 test
    boy took bat home

    忽略每行的前2个字段,忽略第二个空白字符和第三个字段的首字符,结果at home

    [root@stu100 ~]# uniq -f 1 test
    boy took bat home
    dog brought hat home

    忽略每行的第一个字段,这样boy ,girl开头的行看起来是连续重复的行。

    上一篇:Linux 上如何使用QQ和MSN工具
    下一篇:The file /boot/grub/stage1 not read cor 解决办法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    linux 操作系统 uniq命令的说明和使用 linux,操作系统,uniq,命令,