iwita b9152718d2 new version лет назад: 5
..
ratelimiter b9152718d2 new version лет назад: 5
util b9152718d2 new version лет назад: 5
watch b9152718d2 new version лет назад: 5
winfile b9152718d2 new version лет назад: 5
.gitignore b9152718d2 new version лет назад: 5
.travis.yml b9152718d2 new version лет назад: 5
BUILD b9152718d2 new version лет назад: 5
CHANGES.md b9152718d2 new version лет назад: 5
Dockerfile b9152718d2 new version лет назад: 5
LICENSE.txt b9152718d2 new version лет назад: 5
Makefile b9152718d2 new version лет назад: 5
README.md b9152718d2 new version лет назад: 5
appveyor.yml b9152718d2 new version лет назад: 5
tail.go b9152718d2 new version лет назад: 5
tail_posix.go b9152718d2 new version лет назад: 5
tail_windows.go b9152718d2 new version лет назад: 5

README.md

Build Status Build status

Go package for tail-ing files

A Go package striving to emulate the features of the BSD tail program.

t, err := tail.TailFile("/var/log/nginx.log", tail.Config{Follow: true})
for line := range t.Lines {
    fmt.Println(line.Text)
}

See API documentation.

Log rotation

Tail comes with full support for truncation/move detection as it is designed to work with log rotation tools.

Installing

go get github.com/hpcloud/tail/...

Windows support

This package needs assistance for full Windows support.