blob: 963a5102c40c7601219a053f4801ddf8c80ff31e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
extern crate getopts;
use getopts::Options;
use std::env;
use std::process::exit;
fn print_usage(opts: Options) {
let brief = "usage: meetup-find-events-rss";
print!("{}", opts.usage(&brief));
}
fn main() {
let args: Vec<String> = env::args().collect();
let mut opts = Options::new();
opts.optopt(
"",
"meetup-api-token",
"Meetup.com API token (required)",
"TOKEN"
);
opts.optflag("h", "help", "print this help menu");
let opt_matches = match opts.parse(&args[1..]) {
Ok(m) => m,
Err(f) => {
eprint!("meetup-find-events-rss: error: {}", f.to_string());
exit(1);
},
};
if opt_matches.opt_present("h") {
print_usage(opts);
return;
}
}
|