Go to file
Marcel M. Otte c42ce26c88 updated readme 2014-01-08 19:54:53 +01:00
c updated gitignore 2013-12-27 19:05:58 +00:00
java fixed example, further tests needed 2013-12-31 16:57:11 +00:00
.gitignore proper project foldering. yeah, I shouldn't copy around bare java 2013-12-12 20:03:05 +00:00
LICENSE corrected license 2013-12-12 20:31:32 +01:00
README.md updated readme 2014-01-08 19:54:53 +01:00

README.md

cmdlineoptions

A library for some languages handling commandline options in the dashed fashion.

Currently available as:

  • java
    • Currently available just as a Java class, within an eclipse project. :)
  • C
    • ... not ... quite ... ready ...
  • (C++ maybe coming soon...)
  • maybe other languages in the future?

It supports single dashed options like "-h", double dashed options "--help" and additional option alternatives. It has got automatic help handling of all configured options with "-h", "--help" and "-?".

In the end you can define your own commandline parameter style, because you define the option name yourself like 'CmdOptions.create("-myoption");' or '...create("+anotheropt")', etc.

The library - or better, the libraries - are planned to be consistent over all languages, so you are able to define and check and retrieve options with similar function calls.

Current work and future plans

Working on:

  • JUnit tests
  • Java: refactoring [done]
  • Java: better errorhandling
  • Java: Examples
  • C version
  • Getting started

Future plans:

  • C++ version
  • ...