This commit is contained in:
Mr. Funk 2019-05-09 21:14:19 -04:00
parent e033d5668f
commit 554971b0f4
2 changed files with 18 additions and 9 deletions

View File

@ -5,3 +5,4 @@ authors = ["lastlink <theefunk@gmail.com>"]
edition = "2018" edition = "2018"
[dependencies] [dependencies]
clap = "*"

View File

@ -1,16 +1,24 @@
use clap::*;
fn main() { fn main() {
println!("Hello, world!"); let app = App::new("sclient")
.arg(Arg::with_name("pattern")
let pattern = std::env::args().nth(1).expect("no pattern given"); .long("pattern")
let path = std::env::args().nth(2).expect("no path given"); .takes_value(true));
let args = Cli { // println!("Hello, world!");
pattern: pattern, //
//path: std::path::PathBuf::from(path), let matches = app.get_matches();
}; // let pattern = std::env::args().nth(1).expect("no pattern given");
println!("{}",args.pattern) // let path = std::env::args().nth(2).expect("no path given");
// let args = Cli {
// pattern: pattern,
// //path: std::path::PathBuf::from(path),
// };
println!("{}",matches.value_of("pattern").unwrap());
} }
// cargo run test // cargo run test
// target/debug/sclient --help
// target/debug/sclient --pattern=kevin
struct Cli { struct Cli {
pattern: String, pattern: String,