`long` `short` clap
use clap::{App, Arg};
let a = App::new("scanner").arg(
Arg::with_name("addr")
.help("the address to scan")
.required(true),
).get_matches();
let addr = a.value_of("addr").unwrap();
clap
<