coreutils/src/install/main.rs
Ben Eills e72ec4a5bb Implement skeleton install utility
Add install utility skeleton source, based on
mv, including the getopts setup mirroring
GNU's `man install` documentation.  Also
add a single test and build system code.
2016-07-12 20:56:21 +02:00

5 lines
112 B
Rust

extern crate uu_install;
fn main() {
std::process::exit(uu_install::uumain(std::env::args().collect()));
}