博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
20:单词及字母去重排序案例
阅读量:6412 次
发布时间:2019-06-23

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

用shell处理以下内容

1、按单词出现频率降序排序!

2、按字母出现频率降序排序!

the squid project provides a number ofresources to assist users design,implement and support squid installations.Please browse the documentation and support sections for more infomation,byoldboy training.

课堂实战考察某企业shell面试考试题

http://oldboy.blog.51cto.com/2561410/1686891

解答:

 

 

[root@jenkins scripts]# cat paixu.txt|xargs -n1|awk '{aa[$1]++} END{for (i in aa) print i,aa[i]}'|sort -rnk2 support 2 squid 2 and 2 users 1

 

 

[root@jenkins scripts]# egrep -o "[a-z]" paixu.txt|awk '{aa[$1]++} END{for (j in aa) print j,aa[j]}'|sort -rnk2s 19e 17o 16t 14n 12i 12r 11

 

 

 

 

 

 

 

 

 

 

转载于:https://www.cnblogs.com/gaoyuechen/p/8001227.html

你可能感兴趣的文章
java操作redis
查看>>
一个简单的Dockerfile
查看>>
ajax原理
查看>>
Lambda表达式
查看>>
读懂Netty服务端开发(附学习代码)
查看>>
送给即将踏入软考征途的你
查看>>
这个图片功能咋生成的?
查看>>
使用jQuery和CSS创建一个粘性标题栏
查看>>
要命啦!Word中快速录入大全,内含快捷键小技巧,快来一起学习!
查看>>
智能计算,“芯”时代的华为云
查看>>
VB相册现在在
查看>>
C语言:流与缓冲区详解
查看>>
Python【0】:windows环境下 安装python3
查看>>
javascript实现音频mp3播放
查看>>
html5-离线缓存
查看>>
【JS插件】项目中用过的框架插件集合&使用心得
查看>>
linux系统安装完后的常见工作
查看>>
在Linux服务器、客户端中构建密钥对验证进行远程连接
查看>>
揪出MySQL磁盘消耗迅猛的真凶
查看>>
和“C”的再遇
查看>>