coreutils/src/pwd/pwd.rs
Joseph Crail c4ae971e8c Fix hostid and pwd.
Minor library upgrades and whitespace corrections.
2015-05-01 22:00:53 -04:00

58 lines
1.4 KiB
Rust

#![crate_name = "pwd"]
#![feature(rustc_private)]
/*
* This file is part of the uutils coreutils package.
*
* (c) Derek Chiang <derekchiang93@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
extern crate getopts;
extern crate libc;
use std::env;
use std::io::Write;
#[path = "../common/util.rs"]
#[macro_use]
mod util;
static NAME: &'static str = "pwd";
static VERSION: &'static str = "1.0.0";
pub fn uumain(args: Vec<String>) -> i32 {
let program = args[0].clone();
let opts = [
getopts::optflag("", "help", "display this help and exit"),
getopts::optflag("", "version", "output version information and exit"),
];
let matches = match getopts::getopts(&args[1..], &opts) {
Ok(m) => m,
Err(f) => {
crash!(1, "Invalid options\n{}", f)
}
};
if matches.opt_present("help") {
println!("pwd {}", VERSION);
println!("");
println!("Usage:");
println!(" {0} [OPTION] NAME...", program);
println!("");
print!("{}", getopts::usage("Print the full filename of the current working directory.", &opts));
} else if matches.opt_present("version") {
println!("pwd version: {}", VERSION);
return 0;
} else {
println!("{:?}", env::current_dir().unwrap());
return 0;
}
0
}