博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【Linux】tail命令
阅读量:6321 次
发布时间:2019-06-22

本文共 1258 字,大约阅读时间需要 4 分钟。

用途

tail命令主要用于取出后边几行

全称

tail命令的全称即为tail(尾巴)

参数

-n :后边接数字,代表显示几行的意思

-f :循环读取

-q :不显示处理信息

-v :显示详细的处理信息

案例

案例一:显示文件最后5行内容

[root@bigdata ~]# tail -5 /etc/man_db.conf

#
#---------------------------------------------------------
# Flags.
# NOCACHE keeps man from creating cat pages.
#NOCACHE

案例二:循环查看文件内容

[root@bigdata /]# ping localhost >test.txt &

[4] 9944

[root@bigdata /]# tail -f test.txt
64 bytes from localhost (127.0.0.1): icmp_seq=1791 ttl=64 time=0.112 ms
64 bytes from localhost (127.0.0.1): icmp_seq=1792 ttl=64 time=0.161 ms
  bytes from localhost (127.0.0.1): icmp_seq=1793 ttl=64 time=0.166 ms
64 bytes from localhost (127.0.0.1): icmp_seq=1794 ttl=64 time=0.133 ms

….

想要结束按CTRL+C即可

案例三:从第5行开始显示文件

[root@bigdata /]# tail -n +5 /etc/man_db.conf

# their PATH environment variable. For details see the manpath(5) man page.
#
# Lines beginning with `#' are comments and are ignored. Any combination of
# tabs or spaces may be used as `whitespace' separators.
#
# There are three mappings allowed in this file:
# --------------------------------------------------------
# MANDATORY_MANPATH            manpath_element
# MANPATH_MAP        path_element    manpath_element
# MANDB_MAP        global_manpath    [relative_catpath]
#---------------------------------------------------------

……

转载地址:http://nkvaa.baihongyu.com/

你可能感兴趣的文章
20145223 《信息安全系统设计基础》课程总结
查看>>
iOS评论App----常用时间的处理
查看>>
spring boot集成swagger,自定义注解,拦截器,xss过滤,异步调用,定时任务案例...
查看>>
leetcode503
查看>>
leetcode1089
查看>>
sqlite在c++中的使用方法
查看>>
Spark基础-scala学习(三、Trait)
查看>>
ROS Hotspot服务器的搭建与设定!(上网认证)
查看>>
PHP:第五章——字符串的概念
查看>>
Asp.net Core1.1创建简单WebAPI对Mongodb进行CRUD操作
查看>>
有道词典 纯净版 - imsoft.cnblogs
查看>>
java读取文件夹下所有文件并替换文件每一行中指定的字符串
查看>>
设置mysql远程连接root权限
查看>>
10个小窍门,让你轻松准确搜索。
查看>>
MySQL5.7新特性:lossless replication 无损复制
查看>>
20060911: 新机器·流氓软件
查看>>
C# 检测文件是否被其他进程占用
查看>>
Android IOS WebRTC 音视频开发总结(三八)-- tx help
查看>>
python 的回调函数
查看>>
回调函数和普通函数有什么区别?
查看>>