gotail: add -p argument to use polling

This commit is contained in:
Sridhar Ratnakumar 2013-05-29 15:07:53 -07:00
parent 499e541b19
commit 0758578f6c
1 changed files with 1 additions and 0 deletions

View File

@ -14,6 +14,7 @@ func args2config() tail.Config {
flag.IntVar(&config.Location, "n", 0, "tail from the last Nth location") flag.IntVar(&config.Location, "n", 0, "tail from the last Nth location")
flag.BoolVar(&config.Follow, "f", false, "wait for additional data to be appended to the file") flag.BoolVar(&config.Follow, "f", false, "wait for additional data to be appended to the file")
flag.BoolVar(&config.ReOpen, "F", false, "follow, and track file rename/rotation") flag.BoolVar(&config.ReOpen, "F", false, "follow, and track file rename/rotation")
flag.BoolVar(&config.Poll, "p", false, "use polling, instead of inotify")
flag.Parse() flag.Parse()
if config.ReOpen { if config.ReOpen {
config.Follow = true config.Follow = true