coreutils/src/yes/yes.rs

68 lines
1.6 KiB
Rust
Raw Normal View History

2014-07-06 08:13:36 +00:00
#![crate_name = "yes"]
2013-08-02 17:24:20 +00:00
/*
* This file is part of the uutils coreutils package.
*
* (c) Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/* last synced with: yes (GNU coreutils) 8.13 */
extern crate getopts;
extern crate libc;
2013-08-02 17:24:20 +00:00
#[macro_use]
extern crate uucore;
use getopts::Options;
use std::io::Write;
static NAME: &'static str = "yes";
2015-11-25 09:52:10 +00:00
static VERSION: &'static str = env!("CARGO_PKG_VERSION");
2013-08-02 17:24:20 +00:00
pub fn uumain(args: Vec<String>) -> i32 {
let mut opts = Options::new();
opts.optflag("h", "help", "display this help and exit");
opts.optflag("V", "version", "output version information and exit");
let matches = match opts.parse(&args[1..]) {
2013-08-02 17:24:20 +00:00
Ok(m) => m,
Err(f) => crash!(1, "invalid options\n{}", f)
2013-08-02 17:24:20 +00:00
};
2013-10-22 12:22:10 +00:00
if matches.opt_present("help") {
println!("{} {}", NAME, VERSION);
println!("");
println!("Usage:");
println!(" {0} [STRING]... [OPTION]...", NAME);
println!("");
print!("{}", opts.usage("Repeatedly output a line with all specified STRING(s), or 'y'."));
return 0;
2013-08-02 17:24:20 +00:00
}
2013-10-22 12:22:10 +00:00
if matches.opt_present("version") {
println!("{} {}", NAME, VERSION);
return 0;
2013-08-02 17:24:20 +00:00
}
let string = if matches.free.is_empty() {
"y".to_string()
} else {
matches.free.join(" ")
};
2013-08-02 17:24:20 +00:00
2015-02-22 11:55:30 +00:00
exec(&string[..]);
0
2013-08-02 17:24:20 +00:00
}
2014-05-23 12:28:40 +00:00
pub fn exec(string: &str) {
while pipe_println!("{}", string) { }
2013-08-02 17:24:20 +00:00
}
#[allow(dead_code)]
fn main() {
std::process::exit(uumain(std::env::args().collect()));
}