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

..19-Nov-2020-

ratelimiter/H19-Nov-2020-172125

util/H19-Nov-2020-4936

watch/H19-Nov-2020-567406

winfile/H19-Nov-2020-9377

.travis.ymlH A D19-Nov-2020197 1914

CHANGES.mdH A D19-Nov-20201.3 KiB6438

DockerfileH A D19-Nov-2020485 2013

MakefileH A D19-Nov-2020154 127

README.mdH A D19-Nov-2020868 2918

appveyor.ymlH A D19-Nov-2020245 1211

tail.goH A D19-Nov-202010.1 KiB439328

tail_posix.goH A D19-Nov-2020159 127

tail_windows.goH A D19-Nov-2020191 138

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/kohpsf3rvhjhrox6?svg=true)](https://ci.appveyor.com/project/HelionCloudFoundry/tail)
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