diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-03-29 16:41:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-29 16:41:47 +0200 |
commit | 0eff4b70d0429c0dd1d95bc0a15f679cef351cb5 (patch) | |
tree | de6c66409ca20c10c1500cfa0057421afbb489bd /vendor/github.com/hpcloud/tail/README.md | |
parent | 83d0729146dc4616e180c8d36ffd90de093b8617 (diff) | |
parent | 21502987b2318292bf98e3ef502fb4c0cf9a6d58 (diff) | |
download | podman-0eff4b70d0429c0dd1d95bc0a15f679cef351cb5.tar.gz podman-0eff4b70d0429c0dd1d95bc0a15f679cef351cb5.tar.bz2 podman-0eff4b70d0429c0dd1d95bc0a15f679cef351cb5.zip |
Merge pull request #13686 from vrothberg/nxadm
replace hpcloud/tail with nxadm/tail
Diffstat (limited to 'vendor/github.com/hpcloud/tail/README.md')
-rw-r--r-- | vendor/github.com/hpcloud/tail/README.md | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/vendor/github.com/hpcloud/tail/README.md b/vendor/github.com/hpcloud/tail/README.md deleted file mode 100644 index fb7fbc26c..000000000 --- a/vendor/github.com/hpcloud/tail/README.md +++ /dev/null @@ -1,28 +0,0 @@ -[![Build Status](https://travis-ci.org/hpcloud/tail.svg)](https://travis-ci.org/hpcloud/tail) -[![Build status](https://ci.appveyor.com/api/projects/status/kohpsf3rvhjhrox6?svg=true)](https://ci.appveyor.com/project/HelionCloudFoundry/tail) - -# 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/hpcloud/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/hpcloud/tail/... - -## Windows support - -This package [needs assistance](https://github.com/hpcloud/tail/labels/Windows) for full Windows support. |