首页 > 代码库 > linux面试题小练

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面试题小练