博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
腾讯一shell试题.
阅读量:5809 次
发布时间:2019-06-18

本文共 647 字,大约阅读时间需要 2 分钟。

腾讯一shell试题.

            假设qq.tel文件内容:

              12334:13510014336

              12345:12334555666

              12334:12343453453

              12099:13598989899

              12334:12345454545

              12099:12343454544

            分类如下:

              [12334]

                  13510014336

                  12343453453

                  ...........

              [12099]

                  13598989899

                  12343454544

                  ............

          实现如下:

                                sort  qq.tel| awk  -F':'   '{if(tmp!=$1)   {tmp=$1;print "["tmp"]";}  print $2;}'  #tmp可以换成其他字符           判断tmp是否不等于   不等于就把$1赋值给tmp      打印tmp的值"tmp“   打印$2 

 

 

sort 11.txt |awk '{if(tmp!=$1){tmp=$1;print "["tmp"]"}print $2}'

 

 

找出两个文件中一样的qq号

1 #!/bin/bash

  2 for string1 in `cat a.txt`;do
  3     for string2 in `cat b.txt`;do
  4         if [ "$string1" == "$string2" ];then
  5             echo $string1
  6         fi
  7     done
  8 done     

 

转载于:https://www.cnblogs.com/hanxing/p/4230898.html

你可能感兴趣的文章
UiAutomator源码分析之UiAutomatorBridge框架
查看>>
python 开发之selenium
查看>>
Xcode3.2.5中找不到Mac OS X - Command Line Utility -...
查看>>
css的div垂直居中的方法,百分比div垂直居中
查看>>
如何理解EM算法
查看>>
nginx 域名跳转一例~~~(rewrite、proxy)
查看>>
linux用户家目录无损迁移到独立硬盘
查看>>
文件查找
查看>>
shell编程前言(一)
查看>>
5、centos7.*配置yum的EPEL源及其它源
查看>>
JSON前后台简单操作
查看>>
shell中一些常见的文件操作符
查看>>
CentOS 7 装vim遇到的问题和解决方法
查看>>
JavaScript基础教程1-20160612
查看>>
使用第三方类、库需要注意的正则类RegexKitLite的使用
查看>>
iOS \U7ea2 乱码 转换
查看>>
FCN图像分割
查看>>
ios xmpp demo
查看>>
设计模式之-工厂模式、构造函数模式
查看>>
python matplotlib 中文显示参数设置
查看>>