v/vlib/cli
2024-08-11 09:11:24 +03:00
..
testdata cli: fix default flags when their command equivalents are disabled (#21469) 2024-05-08 14:11:40 +03:00
cli_test.v cli: fix default flags when their command equivalents are disabled (#21469) 2024-05-08 14:11:40 +03:00
command.v fmt: fix and simplify align of struct fields (#21995) 2024-08-05 20:23:39 +03:00
command_test.v fmt: fix alignment of struct init fields (#22025) 2024-08-11 09:11:24 +03:00
flag.v cli: simplify flag parsing (#21392) 2024-05-01 21:07:25 +03:00
flag_test.v fmt: fix alignment of struct init fields (#22025) 2024-08-11 09:11:24 +03:00
help.v fmt: fix alignment of struct init fields (#22025) 2024-08-11 09:11:24 +03:00
help_test.v fmt: fix alignment of struct init fields (#22025) 2024-08-11 09:11:24 +03:00
man.v fmt: fix alignment of struct init fields (#22025) 2024-08-11 09:11:24 +03:00
man_test.v fmt: fix alignment of struct init fields (#22025) 2024-08-11 09:11:24 +03:00
README.md fmt: fix alignment of struct init fields (#22025) 2024-08-11 09:11:24 +03:00
version.v fmt: fix alignment of struct init fields (#22025) 2024-08-11 09:11:24 +03:00

Description

cli is a command line option parser, that supports declarative subcommands, each having separate set of options.

See also the flag module, for a simpler command line option parser, that supports only options.

Example

module main

import os
import cli

fn main() {
	mut app := cli.Command{
		name:        'example-app'
		description: 'example-app'
		execute:     fn (cmd cli.Command) ! {
			println('hello app')
			return
		}
		commands: [
			cli.Command{
				name:    'sub'
				execute: fn (cmd cli.Command) ! {
					println('hello subcommand')
					return
				}
			},
		]
	}
	app.setup()
	app.parse(os.args)
}