a500d8777b | ||
---|---|---|
cmd/gotail | ||
.gitignore | ||
Makefile | ||
README.md | ||
tail.go | ||
tail_test.go | ||
watch.go |
README.md
Tail implementation in Go
A Go package striving to emulate the BSD tail
program.
t := tail.TailFile("/var/log/nginx.log", tail.Config{Follow: true})
for line := range t.Lines {
fmt.Println(line.Text)
}
Building
To build and test the package,
make setup
make test
To build the command-line program gotail
,
cd cmd/gotail
make
./gotail -h
TODO
- Support arbitrary values for
Location