Shell_QA
简介
下面的shell题,比较有难度,特此记录下。
shell
统计词频 将一个文本中的单词的出现频率统计出来
下面是从ssh配置文件中复制过来的一段,当作words.txt中的内容,
words.txt
The strategy used for options in the default sshd_config shipped with
OpenSSH is to specify options with their default value where
possible, but leave them commented. Uncommented options override the
default value.
你的脚本应当输出(以词频降序排列):
options 3
default 3
with 2
the 2
where 1
value. 1
value 1
used 1
Uncommented 1
to 1
them 1
- 答案
1 |
|
统计合格的手机号码
w.txt
987-123-4567
123 456 7890
(123) 456-7890
1 |
|
sort对IP进行排序
1 |
|
转置文件
假设 file.txt 文件内容如下:
name age
alice 21
ryan 30
应当输出:
name alice ryan
age 21 30
答案:
1 |
|
网站
Shell_QA
https://imwang77.github.io/2020/05/10/Shell_QA/