coreutils/src/yes/yes.rs

65 lines
1.5 KiB
Rust
Raw Normal View History

2014-07-06 08:13:36 +00:00
#![crate_name = "yes"]
#![feature(rustc_private)]
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
use std::io::Write;
2014-02-23 22:17:48 +00:00
#[path = "../common/util.rs"]
2015-01-08 12:54:22 +00:00
#[macro_use]
mod util;
static NAME: &'static str = "yes";
2013-08-02 17:24:20 +00:00
pub fn uumain(args: Vec<String>) -> i32 {
let program = &args[0];
2014-05-30 08:35:54 +00:00
let opts = [
getopts::optflag("h", "help", "display this help and exit"),
getopts::optflag("V", "version", "output version information and exit"),
2013-08-02 17:24:20 +00:00
];
let matches = match getopts::getopts(&args[1..], &opts) {
2013-08-02 17:24:20 +00:00
Ok(m) => m,
Err(f) => {
2014-06-15 10:50:40 +00:00
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!("yes 1.0.0");
println!("");
println!("Usage:");
2014-11-21 09:09:43 +00:00
println!(" {0} [STRING]... [OPTION]...", program);
println!("");
print!("{}", getopts::usage("Repeatedly output a line with all specified STRING(s), or 'y'.", &opts));
return 0;
2013-08-02 17:24:20 +00:00
}
2013-10-22 12:22:10 +00:00
if matches.opt_present("version") {
println!("yes 1.0.0");
return 0;
2013-08-02 17:24:20 +00:00
}
let string = if matches.free.is_empty() {
"y".to_string()
} else {
matches.free.connect(" ")
};
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
}