- infos = Information about the gopts plugin is in keys below
- infos/author = Klemens Böswirth [email protected]
- infos/licence = BSD
- infos/needs =
- infos/provides =
- infos/recommends =
- infos/placements = procgetstorage
- infos/status = recommended productive maintained nodep libc
- infos/metadata = args opt opt/long opt/arg opt/flagvalue opt/help opt/hidden opt/# opt/#/long opt/#/arg opt/#/flagvalue opt/#/hidden env env/#
- infos/description = Parses command-line options using elektra-opts
This plugin is very simple in what it does. It uses system specific methods of accessing argc
and argv
outside of main
and then calls
elektraGetOpts
to do options processing.
The preferred way of using this plugin is via kdbEnsure
:
KDB * kdb = kdbOpen (parentKey);
KeySet * contract = ksNew (1, keyNew ("system/elektra/ensure/plugins/global/gopts", KEY_VALUE, "mounted", KEY_END), KS_END);
int rc = kdbEnsure (kdb, contract, parentKey);
if (rc != 0)
{
// error handling
}
// gopts now mounted
KeySet * ks = ksNew (0, KS_END);
kdbGet (kdb, ks, parentKey);