coreutils/printenv/printenv.rs

86 lines
2.2 KiB
Rust
Raw Normal View History

2014-03-31 16:40:21 +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 */
2014-03-31 16:40:21 +00:00
#![feature(macro_rules)]
extern crate getopts;
extern crate libc;
2013-08-02 17:24:20 +00:00
use std::os;
use std::io::print;
2014-02-23 22:17:48 +00:00
#[path = "../common/util.rs"]
mod util;
static NAME: &'static str = "printenv";
2013-08-02 17:24:20 +00:00
#[allow(dead_code)]
fn main() { os::set_exit_status(uumain(os::args())); }
2014-05-28 11:43:37 +00:00
pub fn uumain(args: Vec<String>) -> int {
2014-05-16 08:32:58 +00:00
let program = args.get(0).clone();
2014-05-30 08:35:54 +00:00
let opts = [
getopts::optflag("0", "null", "end each output line with 0 byte rather than newline"),
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.tail(), opts) {
2013-08-02 17:24:20 +00:00
Ok(m) => m,
Err(f) => {
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") {
println!("printenv 1.0.0");
println!("");
println!("Usage:");
println!(" {0:s} [VARIABLE]... [OPTION]...", program);
println!("");
2014-05-17 10:32:14 +00:00
print(getopts::usage("Prints the given environment VARIABLE(s), otherwise prints them all.", opts).as_slice());
return 0;
2013-08-02 17:24:20 +00:00
}
2013-10-22 12:22:10 +00:00
if matches.opt_present("version") {
println!("printenv 1.0.0");
return 0;
2013-08-02 17:24:20 +00:00
}
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);
return 0;
2013-08-02 17:24:20 +00:00
}
2014-05-25 09:20:52 +00:00
pub fn exec(args: Vec<String>, separator: &str) {
2013-08-02 17:24:20 +00:00
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() {
2014-05-17 10:32:14 +00:00
match os::getenv(env_var.as_slice()) {
2013-08-02 17:24:20 +00:00
Some(var) => {
2014-05-23 12:28:40 +00:00
print(var.as_slice());
2013-08-02 17:24:20 +00:00
print(separator);
}
_ => ()
}
}
}