This repository is a small example command line interface using the Conche
build system. It was mostly generated via conche init.
$ conche init Hello --with-cli --with-testsThis example provides a command called hello which can output Hello World
or Hello and some given names.
$ hello
Hello World
$ hello Kyle
Hello Kyle
$ hello Kyle Katie
Hello Kyle and KatieUsing Conche, the example can be installed using conche install.
$ conche installBy default, it will install the tool into /usr/local, you can pass in a
custom destination using --prefix.
$ conche install --prefix /usr/local/Cellar/hello/HEAD$ conche testYou can use conche to build and run the hello example without
installing it to your system as follows:
$ conche build
$ conche exec hello