1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/cli/README.md

39 lines
634 B
Markdown
Raw Normal View History

## 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:
2021-01-05 14:25:25 +03:00
```v
module main
import os
import cli
fn main() {
mut app := cli.Command{
name: 'example-app'
description: 'example-app'
execute: fn (cmd cli.Command) ! {
2021-01-05 14:25:25 +03:00
println('hello app')
return
}
commands: [
cli.Command{
name: 'sub'
execute: fn (cmd cli.Command) ! {
2021-01-05 14:25:25 +03:00
println('hello subcommand')
return
}
},
]
}
app.setup()
app.parse(os.args)
}
```