iwita b9152718d2 new version 5 yıl önce
..
ratelimiter b9152718d2 new version 5 yıl önce
util b9152718d2 new version 5 yıl önce
watch b9152718d2 new version 5 yıl önce
winfile b9152718d2 new version 5 yıl önce
.gitignore b9152718d2 new version 5 yıl önce
.travis.yml b9152718d2 new version 5 yıl önce
BUILD b9152718d2 new version 5 yıl önce
CHANGES.md b9152718d2 new version 5 yıl önce
Dockerfile b9152718d2 new version 5 yıl önce
LICENSE.txt b9152718d2 new version 5 yıl önce
Makefile b9152718d2 new version 5 yıl önce
README.md b9152718d2 new version 5 yıl önce
appveyor.yml b9152718d2 new version 5 yıl önce
tail.go b9152718d2 new version 5 yıl önce
tail_posix.go b9152718d2 new version 5 yıl önce
tail_windows.go b9152718d2 new version 5 yıl önce

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.