mirror of
https://github.com/uutils/coreutils
synced 2024-12-18 09:03:14 +00:00
e72ec4a5bb
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.
5 lines
112 B
Rust
5 lines
112 B
Rust
extern crate uu_install;
|
|
|
|
fn main() {
|
|
std::process::exit(uu_install::uumain(std::env::args().collect()));
|
|
}
|