shell_rs/lib.rs
1// Copyright (c) 2021 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
2// Use of this source is governed by Apache-2.0 License that can be found
3// in the LICENSE file.
4
5pub mod core;
6
7pub mod arch;
8pub mod cp;
9pub mod error;
10pub mod groups;
11pub mod hashsum;
12pub mod head;
13pub mod id;
14pub mod ln;
15pub mod ls;
16pub mod mkdir;
17pub mod mv;
18pub mod nice;
19pub mod pwd;
20pub mod renice;
21pub mod rm;
22pub mod sleep;
23pub mod sync;
24pub mod touch;
25pub mod truncate;
26pub mod uname;
27pub mod unlink;
28pub mod uptime;
29pub mod whoami;