├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md └── pg_tail.c /.gitignore: -------------------------------------------------------------------------------- 1 | pg_tail 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaparmeggiani/pg_tail/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaparmeggiani/pg_tail/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaparmeggiani/pg_tail/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaparmeggiani/pg_tail/HEAD/README.md -------------------------------------------------------------------------------- /pg_tail.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaparmeggiani/pg_tail/HEAD/pg_tail.c --------------------------------------------------------------------------------