2014-07-06 08:13:36 +00:00
|
|
|
#![crate_name = "pwd"]
|
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.
|
|
|
|
*/
|
|
|
|
|
2014-02-16 21:29:31 +00:00
|
|
|
extern crate getopts;
|
2014-04-07 22:43:34 +00:00
|
|
|
extern crate libc;
|
2013-12-05 11:36:08 +00:00
|
|
|
|
2015-11-24 01:00:51 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate uucore;
|
|
|
|
|
2015-05-02 02:00:53 +00:00
|
|
|
use std::io::Write;
|
2015-11-22 20:45:04 +00:00
|
|
|
use std::env;
|
2014-02-07 06:39:07 +00:00
|
|
|
|
|
|
|
static NAME: &'static str = "pwd";
|
2015-11-25 09:52:10 +00:00
|
|
|
static VERSION: &'static str = env!("CARGO_PKG_VERSION");
|
2013-12-05 11:36:08 +00:00
|
|
|
|
2015-02-06 13:48:07 +00:00
|
|
|
pub fn uumain(args: Vec<String>) -> i32 {
|
2015-05-21 02:45:43 +00:00
|
|
|
let mut opts = getopts::Options::new();
|
2013-12-05 11:36:08 +00:00
|
|
|
|
2015-05-21 02:45:43 +00:00
|
|
|
opts.optflag("", "help", "display this help and exit");
|
|
|
|
opts.optflag("", "version", "output version information and exit");
|
|
|
|
|
|
|
|
let matches = match opts.parse(&args[1..]) {
|
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)
|
2014-02-07 06:39:07 +00:00
|
|
|
}
|
2013-12-05 11:36:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
if matches.opt_present("help") {
|
2015-05-21 02:45:43 +00:00
|
|
|
let msg = format!("{0} {1}
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
{0} [OPTION]...
|
|
|
|
|
|
|
|
Print the full filename of the current working directory.", NAME, VERSION);
|
|
|
|
print!("{}", opts.usage(&msg));
|
2013-12-05 11:36:08 +00:00
|
|
|
} else if matches.opt_present("version") {
|
2015-05-25 18:50:15 +00:00
|
|
|
println!("{} {}", NAME, VERSION);
|
2013-12-05 11:36:08 +00:00
|
|
|
} else {
|
2015-05-03 01:05:30 +00:00
|
|
|
println!("{}", env::current_dir().unwrap().display());
|
2013-12-05 11:36:08 +00:00
|
|
|
}
|
2014-06-08 07:56:37 +00:00
|
|
|
|
2014-06-12 04:41:53 +00:00
|
|
|
0
|
2013-12-05 11:36:08 +00:00
|
|
|
}
|
2015-11-22 20:45:04 +00:00
|
|
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn main() {
|
|
|
|
std::process::exit(uumain(std::env::args().collect()));
|
|
|
|
}
|