├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── TODO ├── filewatcherd.8 ├── filewatcherd.c ├── log.c ├── log.h ├── run.c ├── run.h ├── watchtab.5 ├── watchtab.c └── watchtab.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | depends/ 3 | filewatcherd 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faelys/filewatcherd/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faelys/filewatcherd/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faelys/filewatcherd/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faelys/filewatcherd/HEAD/TODO -------------------------------------------------------------------------------- /filewatcherd.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faelys/filewatcherd/HEAD/filewatcherd.8 -------------------------------------------------------------------------------- /filewatcherd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faelys/filewatcherd/HEAD/filewatcherd.c -------------------------------------------------------------------------------- /log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faelys/filewatcherd/HEAD/log.c -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faelys/filewatcherd/HEAD/log.h -------------------------------------------------------------------------------- /run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faelys/filewatcherd/HEAD/run.c -------------------------------------------------------------------------------- /run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faelys/filewatcherd/HEAD/run.h -------------------------------------------------------------------------------- /watchtab.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faelys/filewatcherd/HEAD/watchtab.5 -------------------------------------------------------------------------------- /watchtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faelys/filewatcherd/HEAD/watchtab.c -------------------------------------------------------------------------------- /watchtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faelys/filewatcherd/HEAD/watchtab.h --------------------------------------------------------------------------------