Tobias von Dewitz 362fdc9fb2 go modified | hace 5 años | |
---|---|---|
.. | ||
ratelimiter | hace 5 años | |
util | hace 6 años | |
watch | hace 5 años | |
winfile | hace 6 años | |
.gitignore | hace 5 años | |
.travis.yml | hace 5 años | |
CHANGES.md | hace 6 años | |
Dockerfile | hace 6 años | |
LICENSE.txt | hace 6 años | |
Makefile | hace 6 años | |
README.md | hace 5 años | |
appveyor.yml | hace 6 años | |
tail.go | hace 5 años | |
tail_posix.go | hace 6 años | |
tail_windows.go | hace 6 años |
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.
Tail comes with full support for truncation/move detection as it is designed to work with log rotation tools.
go get github.com/hpcloud/tail/...
This package needs assistance for full Windows support.