1. tail命令

1.1. 语法

tail [OPTION]... [FILE]...

1.2. 概述

默认输出文件的最后10行内容到终端屏幕。

1.3. 命令参数

1.3.1. -f

监控文件变化

bogon:Documents wychuan$ tail -f text.log
hello
world
wychuan

bogon:Documents wychuan$ echo '你好啊' >> text.log

bogon:Documents wychuan$ tail -f text.log
hello
world
wychuan
你好啊

1.3.2. -n, --lines=K

输出文件最后K行内容,替代默认的10行。 也可以使用-n +K来表示从第K行开始输出;

bogon:Documents wychuan$ tail -n 2 text.log
wychuan
你好啊
bogon:Documents wychuan$ tail -n +4 text.log
你好啊

1.3.3. --pid=PID

Copyright © wychuan.com 2017 all right reserved,powered by Gitbook该文件修订时间: 2019-01-08 09:27:34

results matching ""

    No results matching ""