Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > fd38d79b3dc4a6e32bbbeaaa618eef63 > files > 23

golang-ActiveState-tail-0.20131114-2.mga4.x86_64.rpm

# Go package for tail-ing files

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

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

See [API documentation](http://godoc.org/github.com/ActiveState/tail).

## 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/ActiveState/tail/...