/// Command #[derive(argh::FromArgs)] struct Cmd { #[argh(positional)] /// positional positional: Vec, #[argh(positional, greedy)] /// remainder remainder: Vec, } fn main() {}