首页 > 其他 > 详细

?本处理三剑客之SED面试题

时间:2020-06-07 14:57:54      阅读:44      评论:0      收藏:0      [点我收藏+]

一级标题

?本处理三剑客之SED面试题

1、linux系统中,__cut__命令可以从?本?件的每??中截取指定的内容的数据。

2、在每??后增加?空??
[root@magedu ~]# sed ‘G‘ text.txt

3、在匹配regex的?之后插??空??
[root@magedu ~]# sed ‘/regex/G‘ text.txt

4、计算?件?数?
cat 1.sh|wc -l

6、sed将?件test中第50?中的haiwao改为haiwai?
[root@magedu ~]# sed -n ‘50s/haiwao/haiwei/p‘ test

7、替换一个文件/etc/passwd里的这root?0:0:root:/root:/bin/bash一行第二个root为test?
cat /etc/passwd| sed ‘/^root/!d‘|sed ‘s/root/test/2‘

8、打印/etc/passwd的奇数??
[root@magedu ~]# sed -n ‘1~2p‘ /etc/passwd

9、?志?件a.log,内容是时间顺序递增,从0点到23点的所有?志记录,每条时间的?志为??:
2016/06/12 00:00:00 - - 200 190 http://www.a.com/o1html xxxxxxx
2016/06/12 00:00:01 - - 200 390 http://www.b.com/o1html xxxxxxx
2016/06/12 00:00:02 - - 200 490 http://www.v.com/o.html xxxxxxx
2016/06/12 00:00:03 - - 200 890 http://www.a.com/o.html xxxxxxx
......
2016/06/12 23:59:56 - - 200 320 http://www.3.com/o.jpg xxxxxxx
2016/06/12 23:59:57 - - 200 131 http://www.9.com/o.html xxxxxxx
2016/06/12 23:59:58 - - 200 489 http://www.r.com/o.net xxxxxxx
2016/06/12 23:59:59 - - 200 772 http://www.w.com/o.php xxxxxxx

打印出05点到12点之间的所有?志?打印出05:30:35到22:45:55之间的所有?志?
sed -n ‘/2016/06/12 05:00:00/,/2016/06/12 12:00:00/p‘ a.log
sed -n ‘/2016/06/12 05:30:35/,/2016/06/12 22:45:55/p‘ a.log

?本处理三剑客之SED面试题

原文:https://www.cnblogs.com/zhaihongyu/p/13060518.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!