iwita b9152718d2 new version 5 gadi atpakaļ
..
ratelimiter b9152718d2 new version 5 gadi atpakaļ
util b9152718d2 new version 5 gadi atpakaļ
watch b9152718d2 new version 5 gadi atpakaļ
winfile b9152718d2 new version 5 gadi atpakaļ
.gitignore b9152718d2 new version 5 gadi atpakaļ
.travis.yml b9152718d2 new version 5 gadi atpakaļ
BUILD b9152718d2 new version 5 gadi atpakaļ
CHANGES.md b9152718d2 new version 5 gadi atpakaļ
Dockerfile b9152718d2 new version 5 gadi atpakaļ
LICENSE.txt b9152718d2 new version 5 gadi atpakaļ
Makefile b9152718d2 new version 5 gadi atpakaļ
README.md b9152718d2 new version 5 gadi atpakaļ
appveyor.yml b9152718d2 new version 5 gadi atpakaļ
tail.go b9152718d2 new version 5 gadi atpakaļ
tail_posix.go b9152718d2 new version 5 gadi atpakaļ
tail_windows.go b9152718d2 new version 5 gadi atpakaļ

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.