coreutils/src/pwd/pwd.rs

59 lines
1.5 KiB
Rust
Raw Normal View History

2014-07-06 08:13:36 +00:00
#![crate_name = "pwd"]
2015-02-06 12:54:58 +00:00
#![feature(collections, core, io, os, rustc_private)]
2013-12-05 11:36:08 +00:00
/*
* 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;
2013-12-05 11:36:08 +00:00
2015-01-29 07:29:31 +00:00
use std::old_io::print;
2014-02-23 22:17:48 +00:00
#[path = "../common/util.rs"]
2015-01-08 12:54:22 +00:00
#[macro_use]
mod util;
2013-12-05 11:36:08 +00:00
static NAME: &'static str = "pwd";
2013-12-05 11:36:08 +00:00
static VERSION: &'static str = "1.0.0";
2015-01-10 13:07:39 +00:00
pub fn uumain(args: Vec<String>) -> isize {
2014-07-20 01:13:55 +00:00
let program = args[0].clone();
2014-05-30 08:35:54 +00:00
let opts = [
getopts::optflag("", "help", "display this help and exit"),
getopts::optflag("", "version", "output version information and exit"),
2013-12-05 11:36:08 +00:00
];
2014-11-19 20:55:25 +00:00
let matches = match getopts::getopts(args.tail(), &opts) {
2013-12-05 11:36:08 +00:00
Ok(m) => m,
Err(f) => {
2014-06-15 10:50:40 +00:00
crash!(1, "Invalid options\n{}", f)
}
2013-12-05 11:36:08 +00:00
};
if matches.opt_present("help") {
println!("pwd {}", VERSION);
println!("");
println!("Usage:");
2014-11-21 09:09:43 +00:00
println!(" {0} [OPTION] NAME...", program);
println!("");
2014-11-19 20:55:25 +00:00
print(getopts::usage("Print the full filename of the current working directory.", &opts).as_slice());
2013-12-05 11:36:08 +00:00
} else if matches.opt_present("version") {
println!("pwd version: {}", VERSION);
return 0;
2013-12-05 11:36:08 +00:00
} else {
let cwd = std::os::getcwd();
2014-11-19 20:55:25 +00:00
println!("{}", cwd.unwrap().display());
return 0;
2013-12-05 11:36:08 +00:00
}
0
2013-12-05 11:36:08 +00:00
}