2013-12-26 10:49:31 +00:00
|
|
|
#[crate_id(name="yes", vers="1.0.0", author="Seldaek")];
|
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 */
|
|
|
|
|
2014-02-07 06:39:07 +00:00
|
|
|
#[feature(macro_rules)];
|
|
|
|
|
2014-02-16 21:29:31 +00:00
|
|
|
extern crate getopts;
|
2013-08-02 17:24:20 +00:00
|
|
|
|
|
|
|
use std::os;
|
2014-02-07 06:39:07 +00:00
|
|
|
use std::io::{print, println};
|
|
|
|
|
2014-02-23 22:17:48 +00:00
|
|
|
#[path = "../common/util.rs"]
|
2014-02-07 06:39:07 +00:00
|
|
|
mod util;
|
|
|
|
|
|
|
|
static NAME: &'static str = "yes";
|
2013-08-02 17:24:20 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let args = os::args();
|
2013-08-04 23:21:57 +00:00
|
|
|
let program = args[0].clone();
|
2013-08-02 17:24:20 +00:00
|
|
|
let opts = ~[
|
2014-02-07 06:39:07 +00:00
|
|
|
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
|
|
|
];
|
2014-02-07 06:39:07 +00:00
|
|
|
let matches = match getopts::getopts(args.tail(), opts) {
|
2013-08-02 17:24:20 +00:00
|
|
|
Ok(m) => m,
|
|
|
|
Err(f) => {
|
2014-02-07 06:39:07 +00:00
|
|
|
crash!(1, "invalid options\n{}", f.to_err_msg())
|
2013-08-02 17:24:20 +00:00
|
|
|
}
|
|
|
|
};
|
2013-10-22 12:22:10 +00:00
|
|
|
if matches.opt_present("help") {
|
2014-01-13 09:05:02 +00:00
|
|
|
println!("yes 1.0.0");
|
|
|
|
println!("");
|
|
|
|
println!("Usage:");
|
2013-11-11 09:39:23 +00:00
|
|
|
println!(" {0:s} [STRING]... [OPTION]...", program);
|
2014-01-13 09:05:02 +00:00
|
|
|
println!("");
|
2014-02-07 06:39:07 +00:00
|
|
|
print(getopts::usage("Repeatedly output a line with all specified STRING(s), or 'y'.", opts));
|
2013-08-02 17:24:20 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-10-22 12:22:10 +00:00
|
|
|
if matches.opt_present("version") {
|
2014-01-13 09:05:02 +00:00
|
|
|
println!("yes 1.0.0");
|
2013-08-02 17:24:20 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
let mut string = ~"y";
|
|
|
|
if !matches.free.is_empty() {
|
|
|
|
string = matches.free.connect(" ");
|
|
|
|
}
|
|
|
|
|
|
|
|
exec(string);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn exec(string: ~str) {
|
|
|
|
loop {
|
|
|
|
println(string);
|
|
|
|
}
|
|
|
|
}
|