coreutils/printenv/printenv.rs

78 lines
2.1 KiB
Rust
Raw Normal View History

2013-12-26 10:49:31 +00:00
#[crate_id(name="printenv", 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: printenv (GNU coreutils) 8.13 */
extern mod extra;
use std::os;
2013-11-13 11:17:41 +00:00
use std::io::stderr;
use extra::getopts::groups;
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 = ~[
groups::optflag("0", "null", "end each output line with 0 byte rather than newline"),
groups::optflag("h", "help", "display this help and exit"),
groups::optflag("V", "version", "output version information and exit"),
];
let matches = match groups::getopts(args.tail(), opts) {
Ok(m) => m,
Err(f) => {
writeln!(&mut stderr() as &mut Writer,
"Invalid options\n{}", f.to_err_msg());
2013-08-02 17:24:20 +00:00
os::set_exit_status(1);
return
}
};
2013-10-22 12:22:10 +00:00
if matches.opt_present("help") {
2013-08-02 17:24:20 +00:00
println("printenv 1.0.0");
println("");
println("Usage:");
println!(" {0:s} [VARIABLE]... [OPTION]...", program);
2013-08-02 17:24:20 +00:00
println("");
print(groups::usage("Prints the given environment VARIABLE(s), otherwise prints them all.", opts));
return;
}
2013-10-22 12:22:10 +00:00
if matches.opt_present("version") {
2013-08-02 17:24:20 +00:00
println("printenv 1.0.0");
return;
}
let mut separator = "\n";
2013-10-22 12:22:10 +00:00
if matches.opt_present("null") {
2013-08-02 17:24:20 +00:00
separator = "\x00";
};
exec(matches.free, separator);
}
pub fn exec(args: ~[~str], separator: &str) {
if args.is_empty() {
let vars = os::env();
for (env_var, value) in vars.move_iter() {
print!("{0:s}={1:s}", env_var, value);
2013-08-02 17:24:20 +00:00
print(separator);
}
return;
}
2013-08-04 23:21:57 +00:00
for env_var in args.iter() {
2013-08-02 17:24:20 +00:00
match os::getenv(*env_var) {
Some(var) => {
print(var);
print(separator);
}
_ => ()
}
}
}