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