摘要: Write a bash script to calculate the frequency of each word in a text file words.txt. For simplicity sake, you may assume: words.txt contains only low 阅读全文
posted @ 2018-07-13 17:24 __Meng 阅读(177) 评论(0) 推荐(0) 编辑
摘要: Given a text file file.txt that contains list of phone numbers (one per line), write a one liner bash script to print all valid phone numbers. You may 阅读全文
posted @ 2018-07-13 16:30 __Meng 阅读(197) 评论(0) 推荐(0) 编辑
摘要: sed是一个管道命令,可以将数据进行替换、删除、新增、选取特定行等功能 选项 sed命令 sed替换标记 sed元字符集 替换操作:s命令 当需要从第N处匹配开始替换时,可以使用 /Ng: 删除操作:d命令 删除第4行到最后一行 删除空白行 删除文件中所有开头是test的行: 追加(行下):a命令 阅读全文
posted @ 2018-07-13 11:30 __Meng 阅读(299) 评论(0) 推荐(0) 编辑