Linux 之 grephead ail 命令使用(第六章)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 之 grephead ail 命令使用(第六章)相关的知识,希望对你有一定的参考价值。
grep\head\tail 命令使用
test.txt
1
2
3
4
5
6
7
8
9
10
test
liyao
oldboy
grep命令:
1.排除文本内容包括oldbody字符(grep -v 命令排除)[[email protected] kang]# grep -v "oldboy" test.txt
1
2
3
4
5
6
7
8
9
10
test
liyao
2.只查找文件中包含oldbody字符。
[[email protected] kang]# grep "oldboy" test.txt
oldboy
head头部命令
1.查找文件前5行数据[[email protected] kang]# head -n 5 test.txt
1
2
3
4
5
tail尾部命令
1.查找文件后面3行数据[[email protected] kang]# tail -n 3 test.txt
#默认后10行
liyao
oldboy
2.tail 动态查看后面[[email protected] kang]# tail -fn 100 test.txt
以上是关于Linux 之 grephead ail 命令使用(第六章)的主要内容,如果未能解决你的问题,请参考以下文章
Linux 常见命令之Find ; +结合其它命令使用案例详解
Linux系列教程——Linux常用命令之网络和关机重启命令