sclient.rust/src/main.rs

33 lines
1.0 KiB
Rust

use clap::*;
fn main() {
let app = App::new("sclient")
.arg(Arg::with_name("pattern")
.long("pattern")
.takes_value(true));
// println!("Hello, world!");
//
let matches = app.get_matches();
// let pattern = std::env::args().nth(1).expect("no pattern given");
// 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
// target/debug/sclient --help
// target/debug/sclient --pattern=kevin
struct Cli {
pattern: String,
path: std::path::PathBuf,
}
// insecure := flag.Bool("k", false, "ignore bad TLS/SSL/HTTPS certificates")
// servername := flag.String("servername", "", "specify a servername different from <remote> (to disable SNI use an IP as <remote> and do use this option)")
// flag.BoolVar(insecure, "insecure", false, "ignore bad TLS/SSL/HTTPS certificates")
// flag.Parse()
// remotestr := flag.Arg(0)
// localstr := flag.Arg(1)