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

stat: add main.rs

This commit is contained in:
Knight 2016-05-31 13:27:45 +08:00
parent 0926cd43ac
commit 676f00fea3

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

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