├── .gitignore ├── .travis.yml ├── History.md ├── Makefile ├── Readme.md ├── deps ├── commander.c ├── commander.h ├── ms.c └── ms.h ├── example ├── on_error.sh └── program.sh ├── package.json └── src └── mon.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/mon/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/mon/HEAD/.travis.yml -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/mon/HEAD/History.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/mon/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/mon/HEAD/Readme.md -------------------------------------------------------------------------------- /deps/commander.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/mon/HEAD/deps/commander.c -------------------------------------------------------------------------------- /deps/commander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/mon/HEAD/deps/commander.h -------------------------------------------------------------------------------- /deps/ms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/mon/HEAD/deps/ms.c -------------------------------------------------------------------------------- /deps/ms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/mon/HEAD/deps/ms.h -------------------------------------------------------------------------------- /example/on_error.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/mon/HEAD/example/on_error.sh -------------------------------------------------------------------------------- /example/program.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/mon/HEAD/example/program.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/mon/HEAD/package.json -------------------------------------------------------------------------------- /src/mon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj/mon/HEAD/src/mon.c --------------------------------------------------------------------------------