码迷,mamicode.com
首页 > 系统相关 > 详细

linux面试题小练

时间:2017-01-16 14:31:50      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:linux面试题

1.查询t.txt 里面空行的所在行号,aaa...为第一行

技术分享

[root@dbserver ~]# grep -n ^$ t.txt

3:

5:

[root@dbserver ~]# grep -n ^$ t.txt |awk ‘BEGIN {FS=":"} {print $1}‘

3

5

2.查询t.txt 以abc 结尾的行

grep "abc$" t.txt

技术分享

3.打印出t.txt 文件第1 到第3 行

sed -n ‘1,3p‘ t.txt

or 

head -3 t.txt

技术分享

本文出自 “运维” 博客,请务必保留此出处http://wjq51cto.blog.51cto.com/11192275/1892236

linux面试题小练

标签:linux面试题

原文地址:http://wjq51cto.blog.51cto.com/11192275/1892236

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!