mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Add generation of shell autocompletion scripts. Acked-by: Steffen Eiden <seiden@linux.ibm.com> Reviewed-by: Jan Höppner <hoeppner@linux.ibm.com> Signed-off-by: Szabina Korbai <szkorbai@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
31 lines
586 B
C
31 lines
586 B
C
/*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright IBM Corp.
|
|
*/
|
|
|
|
#ifndef VMCP_CLI_H
|
|
#define VMCP_CLI_H
|
|
|
|
#include "lib/util_opt.h"
|
|
|
|
static struct util_opt opt_vec[] = {
|
|
UTIL_OPT_SECTION("OPTIONS"),
|
|
{
|
|
.option = { "keepcase", no_argument, NULL, 'k' },
|
|
.desc = "Do not convert CP-command string to uppercase",
|
|
},
|
|
{
|
|
.option = { "buffer", required_argument, NULL, 'b' },
|
|
.argument = "SIZE",
|
|
.desc = "Specify buffer size in bytes, kilobytes (k) "
|
|
"or megabytes (M). SIZE range from 4096 to 1048576 "
|
|
"bytes"
|
|
},
|
|
UTIL_OPT_HELP,
|
|
UTIL_OPT_VERSION,
|
|
UTIL_OPT_END
|
|
};
|
|
|
|
#endif
|