mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-27 19:17:43 +00:00
chgrp: add entries
This commit is contained in:
parent
2981eb5112
commit
8cba71adb4
4 changed files with 10 additions and 1 deletions
|
@ -7,6 +7,7 @@ build = "build.rs"
|
||||||
[features]
|
[features]
|
||||||
unix = [
|
unix = [
|
||||||
"arch",
|
"arch",
|
||||||
|
"chgrp",
|
||||||
"chmod",
|
"chmod",
|
||||||
"chown",
|
"chown",
|
||||||
"chroot",
|
"chroot",
|
||||||
|
@ -108,6 +109,7 @@ base32 = { optional=true, path="src/base32" }
|
||||||
base64 = { optional=true, path="src/base64" }
|
base64 = { optional=true, path="src/base64" }
|
||||||
basename = { optional=true, path="src/basename" }
|
basename = { optional=true, path="src/basename" }
|
||||||
cat = { optional=true, path="src/cat" }
|
cat = { optional=true, path="src/cat" }
|
||||||
|
chgrp = { optional=true, path="src/chgrp" }
|
||||||
chmod = { optional=true, path="src/chmod" }
|
chmod = { optional=true, path="src/chmod" }
|
||||||
chown = { optional=true, path="src/chown" }
|
chown = { optional=true, path="src/chown" }
|
||||||
chroot = { optional=true, path="src/chroot" }
|
chroot = { optional=true, path="src/chroot" }
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -103,6 +103,7 @@ PROGS := \
|
||||||
|
|
||||||
UNIX_PROGS := \
|
UNIX_PROGS := \
|
||||||
arch \
|
arch \
|
||||||
|
chgrp \
|
||||||
chmod \
|
chmod \
|
||||||
chown \
|
chown \
|
||||||
chroot \
|
chroot \
|
||||||
|
@ -144,6 +145,7 @@ TEST_PROGS := \
|
||||||
base64 \
|
base64 \
|
||||||
basename \
|
basename \
|
||||||
cat \
|
cat \
|
||||||
|
chgrp \
|
||||||
chmod \
|
chmod \
|
||||||
chown \
|
chown \
|
||||||
cksum \
|
cksum \
|
||||||
|
|
|
@ -153,7 +153,7 @@ To do
|
||||||
* [x] basename
|
* [x] basename
|
||||||
* [x] cat
|
* [x] cat
|
||||||
* [ ] chcon
|
* [ ] chcon
|
||||||
* [ ] chgrp
|
* [x] chgrp
|
||||||
* [x] chmod
|
* [x] chmod
|
||||||
* [x] chown
|
* [x] chown
|
||||||
* [x] chroot
|
* [x] chroot
|
||||||
|
|
5
src/chgrp/main.rs
Normal file
5
src/chgrp/main.rs
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
extern crate uu_chgrp;
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
std::process::exit(uu_chgrp::uumain(std::env::args().collect()));
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue