yunseo-h68 / bliss

A library to make cli program easy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bliss

A library to make cli program easy

Build and Run

$ make
$ make example -s
$ ./bin/example
exampleApp | example of bliss

Usage:
		exampleApp [OPTIONS] [SUBCOMMANDS]

Options:
		-h --hello : print 'HELLO BLISS OPTION'

Subcommands:
		hello : print 'HELLO BLISS SUBCOMMAND'
$ ./bin/example --hello
HELLO BLISS OPTION
$ ./bin/example hello
HELLO BLISS SUBCOMMAND
$ ./bin/example blablabla
NOT FOUND SUBCOMMAND: blablabla
$ ./bin/example --blablabla
NOT FOUND OPTION: --blablabla

License

Bliss is primarily distributed under the terms of MIT license.

See LICENSE for details.

About

A library to make cli program easy

License:MIT License


Languages

Language:C++ 89.3%Language:Makefile 8.9%Language:C 1.8%