标签:默认 web 文件内容 linu 文件中 seq 就会 inux 常用
[root@oldboyboy tmp]# seq 15 >l.sh
[root@oldboyboy tmp]# cat l.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[root@oldboyboy tmp]# head l.sh
1
2
3
4
5
6
7
8
9
10
[root@oldboyboy tmp]#
[root@oldboyboy tmp]# head -3 l.sh
1
2
3
[root@oldboyboy tmp]#
参数
[root@oldboyboy tmp]# cat o.txt
hello ! my qq 123.
I am oldboy my qq 1234567
[root@oldboyboy tmp]# head -c 3 o.txt
hel
[root@oldboyboy tmp]#
* tail 从文件内容的末尾开始查看
tail -5 l.sh 查看文件末尾的最后5行
[root@oldboyboy tmp]# tail -5 l.sh
11
12
13
14
15
[root@oldboyboy tmp]#
参数
-f 用来实时查看文件末尾的内容
tail -f l.sh 实时查看文件末尾的内容,常用来查看WEB的日志文件
[root@oldboyboy tmp]# tail -f l.sh
6
7
8
9
10
11
12
13
14
15
当文件的末尾有新的内容追加时,就会实时显示在文件末尾。
标签:默认 web 文件内容 linu 文件中 seq 就会 inux 常用
原文地址:https://blog.51cto.com/14423146/2446943