• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Godeps/H05-May-2019-

cmd/gotail/H05-May-2019-

ratelimiter/H05-May-2019-

util/H05-May-2019-

vendor/gopkg.in/H05-May-2019-

watch/H05-May-2019-

winfile/H05-May-2019-

.gitignoreH A D05-May-201911

.travis.ymlH A D05-May-2019214

CHANGES.mdH A D05-May-20191.3 KiB

DockerfileH A D05-May-2019485

MakefileH A D05-May-2019154

README.mdH A D05-May-2019883

appveyor.ymlH A D05-May-2019245

tail.goH A D05-May-20199 KiB

tail_posix.goH A D05-May-2019159

tail_test.goH A D05-May-201914.3 KiB

tail_windows.goH A D05-May-2019188

README.md

1[![Build Status](https://travis-ci.org/hpcloud/tail.svg)](https://travis-ci.org/hpcloud/tail)
2[![Build status](https://ci.appveyor.com/api/projects/status/vrl3paf9md0a7bgk/branch/master?svg=true)](https://ci.appveyor.com/project/Nino-K/tail/branch/master)
3
4# Go package for tail-ing files
5
6A Go package striving to emulate the features of the BSD `tail` program.
7
8```Go
9t, err := tail.TailFile("/var/log/nginx.log", tail.Config{Follow: true})
10for line := range t.Lines {
11    fmt.Println(line.Text)
12}
13```
14
15See [API documentation](http://godoc.org/github.com/hpcloud/tail).
16
17## Log rotation
18
19Tail comes with full support for truncation/move detection as it is
20designed to work with log rotation tools.
21
22## Installing
23
24    go get github.com/hpcloud/tail/...
25
26## Windows support
27
28This package [needs assistance](https://github.com/hpcloud/tail/labels/Windows) for full Windows support.
29