1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-27 11:07:44 +00:00

chown: Add main.rs

This commit is contained in:
Knight 2016-06-22 21:37:40 +08:00
parent 69beb787d1
commit 123175d577

5
src/chown/main.rs Normal file
View file

@ -0,0 +1,5 @@
extern crate uu_chown;
fn main() {
std::process::exit(uu_chown::uumain(std::env::args().collect()));
}